<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Randevu Ä°ptal Page Styles */
.appointment-cancel-section {
    padding: 60px 0;
    background: linear-gradient(112deg, #edf6ff, #baddff);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cancel-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(4, 45, 89, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.cancel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cancel-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #042D59;
    margin: 0;
}

.cancel-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
}

.cancel-info {
    background: rgba(37, 184, 197, 0.05);
    border: 1px solid rgba(37, 184, 197, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.cancel-info p {
    margin: 0;
    color: #042D59;
    font-size: 14px;
    line-height: 1.6;
}

.cancel-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.cancel-form .form-group {
    margin-bottom: 15px;
}

.cancel-form label {
    display: block;
    font-weight: 600;
    color: #042D59;
    margin-bottom: 8px;
    font-size: 14px;
}

.cancel-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Roobert', sans-serif;
}

.cancel-form .form-control:focus {
    outline: none;
    border-color: #25B8C5;
    box-shadow: 0 0 0 3px rgba(37, 184, 197, 0.1);
}

.cancel-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.custom-select-container {
    position: relative;
}

.custom-select {
    position: relative;
    cursor: pointer;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s ease;
}

.custom-select:hover {
    border-color: #25B8C5;
}

.custom-select.error {
    border-color: #dc3545;
}

.custom-select input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    pointer-events: none;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.custom-select.active .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #25B8C5;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.select-options.active {
    display: block;
}

.select-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.select-option:hover {
    background-color: rgba(37, 184, 197, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-control.error {
    border-color: #dc3545;
}

.cancel-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cancel-btn:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.cancel-btn:active {
    transform: translateY(0);
}

.cancel-btn svg {
    transition: transform 0.3s ease;
}

.cancel-btn:hover svg {
    transform: translateX(3px);
}

/* Loading state */
.cancel-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cancel-btn.loading span::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .appointment-cancel-section {
        padding: 30px 0;
    }
    
    .cancel-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .cancel-header h2 {
        font-size: 24px;
    }
    
    .cancel-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cancel-icon {
        width: 40px;
        height: 40px;
    }
    
    .cancel-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .cancel-card {
        padding: 20px 15px;
    }
    
    .cancel-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
} </pre></body></html>