/* ===================================
   Cancel Form Specific Styles
   =================================== */

.cancel-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 8px;
}

.cancel-header h1 {
    color: #d9534f;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cancel-description {
    color: #666;
    line-height: 1.8;
}

.cancel-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-hint {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* Cancel Dates List */
.cancel-dates-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.cancel-date-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background-color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
}

.cancel-date-item:hover {
    background-color: #fff5f5;
    border-color: #ffcccc;
}

.cancel-date-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #d9534f;
    cursor: pointer;
}

.cancel-date-item span {
    font-size: 0.95rem;
    color: #333;
}

.cancel-date-item input[type="checkbox"]:checked+span {
    color: #d9534f;
    font-weight: 500;
}

/* Cancel Button Style */
.cancel-btn {
    background-color: #d9534f !important;
    box-shadow: 0 4px 10px rgba(217, 83, 79, 0.3) !important;
}

.cancel-btn:hover {
    background-color: #c9302c !important;
}

/* Modal Cancel Confirm Button */
.modal-btn.cancel-confirm {
    background-color: #d9534f;
    color: #fff;
}

.modal-btn.cancel-confirm:hover {
    background-color: #c9302c;
}

/* Responsive */
@media (max-width: 600px) {
    .cancel-form {
        padding: 20px;
    }

    .cancel-header {
        padding: 20px;
    }

    .cancel-header h1 {
        font-size: 1.4rem;
    }

    .cancel-date-item {
        padding: 10px 12px;
    }

    .cancel-date-item span {
        font-size: 0.85rem;
    }
}