.custom-alert-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 100000;
    justify-content: center;
    align-items: center;
}

.custom-alert {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.custom-alert-title {
    font-size: 24px;
    color: #1e4b33;
    margin-bottom: 15px;
}

.custom-alert-box {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.custom-alert-header {
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
}

.custom-alert-content {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.custom-alert-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.5;
}

.custom-alert-button {
    background: rgb(22 126 65);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.custom-alert-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.custom-alert-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    min-width: 80px;
}

.custom-alert-btn.confirm {
    background: #4CAF50;
    color: white;
}

.custom-alert-btn.cancel {
    background: #f44336;
    color: white;
}

.custom-alert-choice {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    margin: 8px 0;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
}

.custom-alert-choice:hover,
.custom-alert-choice:active {
    background: #e8f5e9;
    border-color: #4CAF50;
}

.custom-alert-choice.keep {
    background: #fafafa;
    color: #555;
}
