/* Profil Sayfası Stilleri */
:root {
    --profile-primary: #2c3e50;
    --profile-secondary: #34495e;
    --profile-accent: #3498db;
    --profile-text: #333;
    --profile-light: #ecf0f1;
    --profile-border: #ddd;
    --profile-success: #27ae60;
    --profile-danger: #e74c3c;
    --profile-warning: #f1c40f;
    --profile-info: #3498db;
}

.profile-container {
    padding: 30px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.profile-sidebar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding: 25px;
    height: 100%;
}

.profile-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.profile-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--profile-light);
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.profile-info {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--profile-border);
}

.profile-info h4 {
    color: var(--profile-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-info p {
    color: var(--profile-secondary);
    font-size: 14px;
    margin-bottom: 5px;
}

.profile-menu {
    margin-top: 20px;
}

.profile-menu .nav-link {
    color: var(--profile-text);
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.profile-menu .nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.profile-menu .nav-link:hover {
    background: var(--profile-light);
    color: var(--profile-accent);
}

.profile-menu .nav-link.active {
    background: var(--profile-accent);
    color: #fff;
}

.profile-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding: 25px;
}

.profile-title {
    color: var(--profile-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--profile-light);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border: 1px solid var(--profile-border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--profile-accent);
}

.stat-card h3 {
    font-size: 24px;
    color: var(--profile-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-card p {
    color: var(--profile-secondary);
    font-size: 14px;
    margin: 0;
}

.profile-form .form-group {
    margin-bottom: 20px;
}

.profile-form label {
    color: var(--profile-primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.profile-form .form-control {
    border: 1px solid var(--profile-border);
    border-radius: 5px;
    padding: 12px 15px;
    height: auto;
    font-size: 14px;
}

.profile-form .form-control:focus {
    border-color: var(--profile-accent);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.profile-form .btn-primary {
    background: var(--profile-accent);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.profile-form .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.appointment-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--profile-border);
    transition: all 0.3s ease;
}

.appointment-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.appointment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--profile-border);
}

.appointment-title {
    font-size: 18px;
    color: var(--profile-primary);
    font-weight: 600;
}

.appointment-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-pending {
    background: var(--profile-warning);
    color: #fff;
}

.status-confirmed {
    background: var(--profile-success);
    color: #fff;
}

.status-cancelled {
    background: var(--profile-danger);
    color: #fff;
}

.appointment-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
}

.detail-item i {
    color: var(--profile-accent);
    margin-right: 10px;
    font-size: 16px;
}

.detail-info h5 {
    font-size: 14px;
    color: var(--profile-secondary);
    margin: 0;
}

.detail-info p {
    font-size: 15px;
    color: var(--profile-primary);
    margin: 0;
    font-weight: 500;
}

.appointment-actions {
    display: flex;
    gap: 10px;
}

.btn-action {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view {
    background: var(--profile-info);
    color: #fff;
}

.btn-cancel {
    background: var(--profile-danger);
    color: #fff;
}

.btn-reschedule {
    background: var(--profile-warning);
    color: #fff;
}

.notification-card {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-bottom: 1px solid var(--profile-border);
    transition: all 0.3s ease;
}

.notification-card:hover {
    background: var(--profile-light);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification-icon.info {
    background: rgba(52, 152, 219, 0.1);
    color: var(--profile-info);
}

.notification-icon.success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--profile-success);
}

.notification-icon.warning {
    background: rgba(241, 196, 15, 0.1);
    color: var(--profile-warning);
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-size: 15px;
    color: var(--profile-primary);
    margin-bottom: 5px;
    font-weight: 500;
}

.notification-text {
    font-size: 14px;
    color: var(--profile-secondary);
    margin-bottom: 5px;
}

.notification-time {
    font-size: 12px;
    color: #999;
}

@media (max-width: 991px) {
    .profile-sidebar {
        margin-bottom: 30px;
    }
    
    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .profile-stats {
        grid-template-columns: 1fr;
    }
    
    .appointment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .appointment-status {
        margin-top: 10px;
    }
    
    .appointment-actions {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
        text-align: center;
    }
}
