/* Rezervasyon İptal Sayfası - Modern CSS */

/* Ana bölüm */
.cancel-reservation-section {
}



/* Test butonları */
.test-buttons-wrapper {
    background: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

.test-label {
    font-weight: 600;
    color: #6c757d;
    margin-right: 15px;
}

.test-btn {
    border: none;
    padding: 8px 16px;
    border-radius: 15px;
    margin: 0 5px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.test-btn.success { background: #28a745; color: white; }
.test-btn.error { background: #dc3545; color: white; }
.test-btn.warning { background: #ffc107; color: #212529; }

.test-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Sol taraf - Görsel */
.cancel-image-wrapper {
    padding: 40px 20px;
}

.cancel-illustration {
    text-align: center;
}

.cancel-icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #39bed3, #2aa3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(57, 190, 211, 0.3);
}

.cancel-main-icon {
    font-size: 60px;
    color: white;
}

.cancel-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cancel-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cancel-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #39bed3, #2aa3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-size: 16px;
}

/* Sağ taraf - Form */
.cancel-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.cancel-form-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #39bed3, #2aa3b8, #28a745);
    border-radius: 22px;
    z-index: -1;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #6c757d;
    font-size: 14px;
}

.modern-form .form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.label-icon {
    margin-right: 8px;
    color: #39bed3;
    width: 16px;
}

.modern-input, .modern-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.modern-input:focus, .modern-textarea:focus {
    outline: none;
    border-color: #39bed3;
    background: white;
    box-shadow: 0 0 0 3px rgba(57, 190, 211, 0.1);
    transform: translateY(-2px);
}

.modern-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.modern-submit-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.modern-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.4);
}

.modern-submit-btn:active {
    transform: translateY(-1px);
}

.modern-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon, .btn-text, .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Modern Modal Styles */
.modern-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modern-modal .modal-body {
    padding: 40px 30px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
}

.modal-icon.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.modal-icon.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.modal-icon.warning {
    background: linear-gradient(135deg, #ffc107, #f39c12);
    color: white;
}

.modern-modal .modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.modern-modal .modal-text {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.modal-actions {
    display: flex;
    justify-content: center;
}

.modern-btn {
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.success-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.error-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.warning-btn {
    background: linear-gradient(135deg, #ffc107, #f39c12);
    color: white;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .cancel-form-wrapper {
        padding: 30px 20px;
    }
    
    .cancel-features {
        flex-direction: column;
    }
    
    .feature-item {
        text-align: center;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .modern-modal .modal-body {
        padding: 30px 20px;
    }
} 