/* Dashboard – Randevular ve Blog iyileştirmeleri */
.appointment-tabs {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.appointment-tabs .nav-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 12px;
    background: var(--hover-bg);
    margin-bottom: 18px;
}

.appointment-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    background: transparent;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 500;
    transition: all .2s ease;
}

.appointment-tabs .nav-link:hover {
    color: var(--primary-color);
    background: #fff;
}

.appointment-tabs .nav-link.active {
    color: var(--primary-color);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.appointment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.appointment-table tbody tr {
    background: transparent;
    transition: all .2s ease;
}

.appointment-table tbody tr:hover {
    background: var(--hover-bg);
}

.appointment-table td {
    padding: 14px 10px;
    vertical-align: middle;
}

.appointment-table td:first-child {
    white-space: nowrap;
    padding-left: 0;
}

.appointment-date {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: .2px;
    margin-bottom: 4px;
}

.appointment-time {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(66, 84, 118, 0.08);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
}

.patient-info .patient-name,
.doctor-info .doctor-name {
    font-weight: 600;
    color: var(--text-color);
}

.doctor-specialty {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

/* Blog tarafı küçük dokunuşlar */
.blog-share-card {
    backdrop-filter: saturate(120%) blur(0px);
}

.blog-card {
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.blog-text {
    -webkit-line-clamp: 2;
}

@media (max-width: 768px) {
    .appointment-tabs {
        padding: 14px;
    }
    .appointment-tabs .nav-pills {
        gap: 6px;
    }
    .appointment-tabs .nav-link {
        padding: 7px 12px;
        font-size: 14px;
    }
    .appointment-table td {
        padding: 10px 6px;
    }
}
/* Welcome Banner */
.welcome-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.banner-stat-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.banner-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--hover-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.banner-stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.banner-stat-card:first-child .stat-icon {
    color: #F59E0B;
}

.banner-stat-card:last-child .stat-icon {
    color: #3B82F6;
}

.banner-stat-card .stat-icon i {
    font-size: 24px;
}

.banner-stat-card .stat-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.banner-stat-card .stat-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 576px) {
    .welcome-banner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .banner-stat-card {
        padding: 20px;
    }
    
    .banner-stat-card .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .banner-stat-card .stat-info h3 {
        font-size: 28px;
    }
}

/* Stats Card Stilleri */
.stats-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0.15), transparent);
    transform: skewX(-15deg) translateX(100%);
    transition: all 0.5s ease;
}

.stats-card:hover::before {
    transform: skewX(-15deg) translateX(-200%);
}

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

.stats-card.purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
}

.stats-card.blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
}

.stats-card.yellow {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.stats-card.orange {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.stats-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.stats-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.stats-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.stats-info p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

.stats-trend {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trend-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trend-badge i {
    font-size: 14px;
}

.trend-text {
    font-size: 13px;
    opacity: 0.8;
}

/* Randevu Sekmesi Stilleri */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.card-header h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h5 i {
    color: var(--primary-color);
    font-size: 20px;
}

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

.action-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    background: var(--hover-bg);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.action-btn i {
    font-size: 16px;
}

.action-btn:hover {
    background: #f0f2f5;
    transform: translateY(-2px);
}

.action-btn.active {
    background: var(--primary-color);
    color: white;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
}

.action-btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 84, 118, 0.2);
}

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Offcanvas randevu kartları (gönderilen HTML yapısına uygun) */
.offcanvas-body .appointment-list{gap:10px; padding:15px;}
.offcanvas-body .appointment-list-item{background:#fff;border:1px solid var(--border-color);border-radius:12px;padding:15px;box-shadow:0 1px 6px rgba(0,0,0,.04)}
.offcanvas-body .appointment-list-item:hover{box-shadow:0 4px 14px rgba(0,0,0,.06);transform:translateY(-1px);transition:all .15s ease}
.offcanvas-body .appointment-list-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.offcanvas-body .time-badge{display:inline-flex;align-items:center;gap:6px;background:#f6f7f9;border:1px solid #eceff3;color:#334155;padding:6px 8px;border-radius:8px;font-weight:600;font-size:12px}
.offcanvas-body .time-badge i{color:#64748b;font-size:14px}
.offcanvas-body .status-badge{display:inline-flex;align-items:center;gap:6px;padding:5px 8px;border-radius:999px;font-size:11px;font-weight:600;border:1px solid transparent}
.offcanvas-body .status-badge.confirmed{background:#ecfdf5;color:#047857;border-color:#a7f3d0}
.offcanvas-body .status-badge.canceled{background:#fef2f2;color:#b91c1c;border-color:#fecaca}
.offcanvas-body .status-badge.pending{background:#fffbeb;color:#b45309;border-color:#fde68a}
.offcanvas-body .patient-info{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.offcanvas-body .patient-avatar{width:36px;height:36px;border-radius:50%;object-fit:cover;border:2px solid #f1f5f9}
.offcanvas-body .patient-details h6{margin:0 0 2px 0;font-weight:600;color:#111827;font-size:14px}
.offcanvas-body .patient-details p{margin:0;color:#6b7280;font-size:12px}
.offcanvas-body .appointment-meta{display:flex;flex-direction:column;align-items:flex-start;gap:6px;margin:6px 0 10px 0}
.offcanvas-body .appointment-meta .meta-item{display:inline-flex;align-items:center;gap:8px;color:#475569;font-size:12px}
.offcanvas-body .appointment-meta .meta-item i{color:#64748b}
.offcanvas-body .appointment-actions{display:flex;align-items:center;gap:6px}
.offcanvas-body .appointment-actions .action-button{display:inline-flex;align-items:center;gap:6px;border-radius:8px;padding:6px 8px;font-size:11px;font-weight:600;border:1px solid transparent;background:#f6f7f9;color:#334155;transition:all .15s ease}
.offcanvas-body .appointment-actions .action-button i{font-size:13px}
.offcanvas-body .appointment-actions .action-button:hover{filter:brightness(0.98);box-shadow:0 2px 8px rgba(0,0,0,.06)}
.offcanvas-body .appointment-actions .btn-edit{background:#eef2ff;color:#3730a3;border-color:#e0e7ff}
.offcanvas-body .appointment-actions .btn-complete{background:#ecfdf5;color:#047857;border-color:#a7f3d0}
.offcanvas-body .appointment-actions .btn-cancel{background:#fef2f2;color:#b91c1c;border-color:#fecaca}

.appointment-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--hover-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.appointment-card:hover {
    transform: translateX(5px);
    background: #f0f2f5;
}

.time-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    min-width: 100px;
}

.time-badge .time {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.time-badge .status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E5E7EB;
}

.time-badge .status.active {
    background: #10B981;
}

.time-badge .status.upcoming {
    background: #F59E0B;
}

.appointment-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.patient, .doctor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.patient img, .doctor img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
}

.patient h6, .doctor h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 4px 0;
}

.patient span, .doctor span {
    font-size: 13px;
    color: var(--text-muted);
}

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

.appointment-actions .action-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.appointment-actions .action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Randevu Tablosu */
.appointment-table {
    width: 100%;
}

.appointment-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.appointment-table td {
    padding: 15px 0;
    vertical-align: middle;
}

.appointment-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.appointment-time {
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}

.patient-info, .doctor-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.patient-info img, .doctor-info img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.patient-name, .doctor-name {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 3px;
}

.doctor-specialty {
    font-size: 13px;
    color: var(--text-muted);
}

/* Blog Paylaşım Kartı */
.blog-share-card {
    background: linear-gradient(135deg, #425476, #364561);
    border-radius: 20px;
    padding: 25px;
    border: none;
    box-shadow: 0 10px 30px rgba(54, 69, 97, 0.2);
    color: white;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.blog-author img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.author-info .author-name {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.blog-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date i {
    font-size: 14px;
}

.share-input-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.share-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.share-input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 15px;
    font-size: 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.share-input:hover {
    background: rgba(255, 255, 255, 0.15);
}

.blog-share-actions {
    display: flex;
    gap: 15px;
}

.share-action-btn {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.share-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.share-action-btn.primary {
    background: white;
    color: var(--primary-color);
}

.share-action-btn.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Blog Listesi */
.blog-list {
    margin-top: 25px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.blog-meta {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 2px;
}

.blog-date {
    font-size: 12px;
    color: var(--text-muted);
}

.blog-options-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    border-radius: 8px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.blog-options-btn:hover {
    background: var(--hover-bg);
    color: var(--primary-color);
}

.blog-content {
    margin-bottom: 12px;
}

.blog-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--hover-bg);
}

.blog-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 13px;
}

.stat-item i {
    font-size: 14px;
}

.blog-share-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    border-radius: 8px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.blog-share-btn:hover {
    background: var(--hover-bg);
    color: var(--primary-color);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .stats-card {
        margin-bottom: 15px;
    }
    
    .appointment-tabs {
        padding: 15px;
    }
    
    .appointment-table td {
        padding: 10px 0;
    }
    
    .patient-info img, .doctor-info img {
        width: 35px;
        height: 35px;
    }
}

:root {
    --primary-color: #425476;
    --secondary-color: #364561;  /* Ana rengin biraz daha koyu tonu */
    --text-color: #2b3035;
    --text-muted: #6c757d;
    --hover-bg: #f8f9fa;
    --active-color: #425476;     /* Ana renkle aynı */
    --border-color: #e9ecef;
    --shadow-color: rgba(66, 84, 118, 0.1); /* Ana rengin gölgesi */
}

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    min-width: 280px;
    max-width: 280px;
    height: 100vh;
    background: white;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

#sidebar.active {
    min-width: 80px;
    max-width: 80px;
}

.sidebar-header {
    padding: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-header .logo {
    max-width: 160px;
    height: auto;
    transition: all 0.3s;
}

#sidebar.active .sidebar-header .logo {
    max-width: 40px;
}

#sidebar ul.components {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    height: calc(100% - 100px);
    overflow-y: auto;
}

#sidebar ul li a {
    padding: 14px 25px;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 12px;
    margin: 4px 12px;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

#sidebar ul li a:hover {
    background: var(--hover-bg);
    color: var(--primary-color);
    transform: translateX(5px);
}

#sidebar ul li.active > a {
    background: var(--primary-color);
    color: white;
}

#sidebar ul li.active > a i {
    color: white;
}

.bottom-item {
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.bottom-item a {
    color: #dc3545 !important;
}

.bottom-item a:hover {
    color: #fff !important;
    background: #dc3545 !important;
    transform: translateX(5px);
}

#sidebar ul li a i {
    font-size: 1.25rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

#sidebar.active ul li a {
    padding: 14px;
    justify-content: center;
}

#sidebar.active ul li a i {
    margin-right: 0;
    font-size: 1.4rem;
}

#sidebar.active ul li a span {
    display: none;
}

#sidebar ul li a:hover i {
    transform: scale(1.1);
}

#content {
    width: calc(100% - 280px);
    min-height: 100vh;
    transition: all 0.3s;
    margin-left: 280px;
    background: #f8f9fa;
}

#content.active {
    width: calc(100% - 80px);
    margin-left: 80px;
}

.navbar {
    height: 75px;
    padding: 0 25px;
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 280px);
    z-index: 1002;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.02);
    transition: all 0.3s;
}

.navbar.active {
    width: calc(100% - 80px);
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    gap: 30px;
}

#sidebarCollapse {
    color: var(--text-muted);
    padding: 8px;
    border-radius: 8px;
    position: relative;
    z-index: 1003;
}

#sidebarCollapse:hover {
    background: rgba(66, 84, 118, 0.1);
    color: var(--primary-color);
}

.user-info {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(66, 84, 118, 0.1);
}

.user-info img {
    width: 38px;
    height: 38px;
    border: 2px solid var(--primary-color);
}

.user-info span {
    color: var(--text-color);
    font-weight: 500;
}

.bi {
    color: #405274;
    font-size: 1.25rem;
}

#sidebar .bi {
    margin-right: 12px;
    font-size: 1.25rem;
}
@media (max-width: 992px) {
    #sidebar {
        margin-left: -280px;
        box-shadow: none;
    }
    
    #sidebar.active {
        margin-left: 0;
        box-shadow: 0 0 30px rgba(0,0,0,0.1);
    }
    
    #content {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    .navbar {
        width: 100% !important;
    }
    
    #sidebarCollapse {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        padding: 0;
        font-size: 1.4rem;
        border-radius: 12px;
        background: var(--hover-bg);
        color: var(--text-color);
        margin-right: 15px;
        transition: all 0.3s ease;
    }
    
    #sidebarCollapse:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }
    
    .sidebar-overlay {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        backdrop-filter: blur(3px);
        transition: all 0.3s ease;
    }
    
    .sidebar-overlay.show {
        display: block;
        opacity: 1;
    }
    
    .stats-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .stats-icon {
        margin: 0 auto 15px;
    }
    
    .appointment-tabs {
        padding: 20px;
    }
    
    .appointment-tabs .nav-pills {
        width: 100%;
        justify-content: center;
    }
    
    .blog-share-card,
    .blog-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0 15px;
    }
    
    .search-box {
        display: none;
    }
    
    .stats-card {
        padding: 15px;
    }
    
    .stats-icon {
        width: 60px;
        height: 60px;
    }
    
    .stats-info h3 {
        font-size: 24px;
    }
    
    .appointment-tabs .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .blog-author img {
        width: 40px;
        height: 40px;
    }
    
    .share-action-btn {
        padding: 10px;
        font-size: 13px;
    }
}

#sidebar ul li a span {
    transition: all 0.3s;
    opacity: 1;
}

#sidebar.active ul li a {
    padding: 12px;
    justify-content: center;
    text-align: center;
}

#sidebar.active ul li a span {
    opacity: 0;
    display: none;
}

#sidebar.active .bi {
    margin-right: 0;
    font-size: 1.4rem;
}

#sidebar.active .bottom-item {
    text-align: center;
}

#sidebar.active ul li {
    position: relative;
}

#sidebar.active ul li a::after {
    content: attr(data-title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    white-space: nowrap;
    pointer-events: none;
    margin-left: 10px;
}

#sidebar.active ul li a:hover::after {
    opacity: 1;
    visibility: visible;
}

#sidebar.active .bottom-item a::after {
    background: #dc3545;
}

.bottom-item .bi-box-arrow-right {
    color: #dc3545;
}

.bottom-item a:hover .bi-box-arrow-right {
    color: #fff;
}

/* Search box stilleri */
.search-box {
    position: relative;
    max-width: 350px;
    width: 100%;
}

.search-box input {
    width: 100%;
    height: 45px;
    padding: 0 45px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    background: var(--hover-bg);
    transition: all 0.3s ease;
}

.search-box input:focus {
    background: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    outline: none;
}

.search-box .bi-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navbar sağ taraf stilleri */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

/* Bildirim butonu stilleri */
.nav-item {
    position: relative;
}

.nav-link {
    
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
	background-color:#FFF;
}

.nav-link:hover {
        background: rgba(66, 84, 118, 0.1);
    color: var(--primary-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF4B4B;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid white;
    color: white;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown menü stilleri */
.dropdown-menu {
    padding: 8px;
    border: none;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border-radius: 15px;
    margin-top: 15px;
    min-width: 220px;
}

.dropdown-header {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.dropdown-item i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.dropdown-item:hover {
    background: var(--hover-bg);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 8px 0;
    opacity: 0.1;
}

.text-danger {
    color: #FF4B4B !important;
}

/* Profil dropdown */
.user-info {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info img {
    width: 35px;
    height: 35px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .search-box {
        display: none; /* Mobilde search box'ı gizle */
    }
    
    .user-info span {
        display: none;
    }
}

/* Modern Banner Tasarımı */
.dashboard-banner {
    position: relative;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--active-color), #4a5d80);
    overflow: hidden;
}

.dashboard-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: url('path/to/pattern.png') no-repeat center right;
    opacity: 0.1;
}

.banner-content {
    position: relative;
    padding: 40px;
    color: white;
    max-width: 600px;
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.banner-content .btn {
    padding: 12px 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.banner-content .btn:hover {
    transform: translateX(5px);
}

/* Modern Card Tasarımı */
.modern-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(66, 84, 118, 0.1);
    color: var(--primary-color);
}

.card-icon i {
    font-size: 1.4rem;
    margin: 0;
}

.card-icon.blue {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.card-actions .btn {
    padding: 6px;
    line-height: 1;
}

.card-actions .btn i {
    font-size: 1.1rem;
    margin: 0;
}

.card-main-info {
    margin-bottom: 15px;
}

.card-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.card-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
}

.card-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: #e8f5e9;
    color: #2e7d32;
}

.stat-badge i {
    font-size: 0.8rem;
    margin: 0;
}

.stat-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.trend-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trend-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
}

.trend-bar {
    width: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
}

.trend-bar.active {
    background: var(--primary-color);
}

.card-icon.blue + .card-content .trend-bar.active {
    background: #0d6efd;
}

@media (max-width: 768px) {
    .dashboard-banner {
        height: 250px;
    }

    .banner-content {
        padding: 30px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }
}

/* Reklam kartı için yeni stiller */
.card-icon.purple {
    background: rgba(137, 83, 254, 0.1);
    color: #8953fe;
}

/* Carousel stilleri */
.carousel {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ad-card {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
}

.ad-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.ad-content h5 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.ad-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.ad-stats {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.ad-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ad-stats i {
    font-size: 0.9rem;
    margin: 0;
}

/* Carousel göstergeleri */
.carousel-indicators {
    margin: 0;
    bottom: 10px;
}

.carousel-indicators button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 4px;
}

.carousel-indicators button.active {
    background-color: white;
}

/* Reklam kontrolleri */
.ad-controls {
    display: flex;
    gap: 5px;
}

.ad-controls .btn {
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.ad-controls .btn i {
    font-size: 0.9rem;
    margin: 0;
}

/* Tablo Stilleri */
.table-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 25px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.custom-table {
    width: 100%;
    margin-bottom: 0;
}

.custom-table thead th {
    background: var(--hover-bg);
    padding: 15px;
    font-weight: 500;
    color: var(--text-muted);
    border: none;
    font-size: 0.9rem;
}

.custom-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.clinic-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.active {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
}

.status-badge.inactive {
    background: rgba(211, 47, 47, 0.1);
    color: #d32f2f;
}

.table-actions {
    display: flex;
    gap: 8px;
}

.table-actions .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.table-actions .btn:hover {
    background: var(--hover-bg);
    transform: translateY(-2px);
}

/* Pagination stilleri */
.pagination {
    margin: 0;
    gap: 5px;
}

.page-link {
    border: none;
    padding: 8px 12px;
    color: var(--text-muted);
    border-radius: 8px;
    margin: 0;
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
}

.pagination-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .table-container {
        overflow-x: auto;
    }
    
    .custom-table {
        min-width: 800px;
    }
}

/* OffCanvas Yeni Stiller */
.offcanvas {
    width: 720px;
    border: none;
    background: #f8f9fa;
}

.offcanvas-header {
    background: white;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 10px rgba(0,0,0,0.02);
}

.offcanvas-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.offcanvas-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

.btn-close {
    background-color: var(--hover-bg);
    padding: 10px;
    border-radius: 10px;
    opacity: 1;
}

.offcanvas-body {
    padding: 0;
}

/* Çalışan Detay Kartı */
.employee-card {
    padding: 20px;
}

.employee-header {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.employee-header img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    margin-bottom: 15px;
    border: 4px solid var(--hover-bg);
    object-fit: cover;
}

.employee-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.employee-header .badge {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 25px;
    background: var(--hover-bg);
    color: var(--primary-color);
}

.employee-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.employee-info .info-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 100%;
}

.employee-info .info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.employee-info .info-item.full-width {
    grid-column: 1 / -1;
}

.employee-info .info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: var(--hover-bg);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.info-content label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.info-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}

/* Yeni Çalışan Formu */
.offcanvas-body form {
    padding: 20px;
    margin: 20px;
    border-radius: 12px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-control, .form-select {
    padding: 10px 15px;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border: none;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
        
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 84, 118, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(66, 84, 118, 0.2);
}

/* Buton tıklama efekti */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-primary:active::after {
    width: 200px;
    height: 200px;
    opacity: 0;
}

/* Şifremi unuttum ve beni hatırla stilleri */
.forgot-password {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-color);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive Düzenlemeler */
@media (max-width: 576px) {
    .employee-header {
        padding: 15px;
    }
    
    .employee-header img {
        width: 70px;
        height: 70px;
    }
    
    .employee-info .info-item {
        padding: 12px;
    }
    
    .offcanvas-body form {
        margin: 12px;
        padding: 15px;
    }
}

/* Stats Card Grid düzenlemesi - Yan yana sıralama */
.row.g-4 > [class*="col-"] {
    width: auto; /* 100% yerine auto */
    max-width: none; /* none yapıyoruz */
    flex: 1; /* kartların eşit genişlikte olması için */
}

/* Stats Card stilleri güncelleme */
.stat-card {
    height: 100%; /* Tüm kartların eşit yükseklikte olması için */
    margin-bottom: 0; /* Alt margin'i kaldırıyoruz */
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.stat-card-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hover-bg);
    flex-shrink: 0;
}

.stat-icon i 
{
	font-size:40px;
}
.stat-info {
    flex: 1;
}

/* Duyuru kartı için özel stil */
.announcements-card {
    margin-bottom: 0;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .row.g-4 > [class*="col-"] {
        width: 100%; /* Mobilde alt alta */
    }
    
    .stat-card {
        margin-bottom: 15px;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .offcanvas {
        width: 100%;
    }
    
    .employee-info .info-item {
        padding: 20px;
    }
}

/* Silme butonu stilleri */
.table-actions .btn.text-danger:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Modal stilleri */
.modal-content {
    border: none;
    border-radius: 16px;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
}

.modal-footer .btn {
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 8px;
}

.btn-danger {
    background: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background: #bb2d3b;
    border-color: #bb2d3b;
}

/* Klinik Detay OffCanvas Stilleri */
.clinic-card {
    padding: 20px;
}

.clinic-header {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.clinic-logo-large {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--hover-bg);
    flex-shrink: 0;
}

.clinic-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinic-header-info {
    flex: 1;
}

.clinic-header-info .clinic-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.clinic-header-info .clinic-type {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: inline-block;
    padding: 4px 12px;
    background: var(--hover-bg);
    border-radius: 20px;
}

.clinic-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clinic-info-list .info-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.clinic-info-list .info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.clinic-info-list .info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: var(--hover-bg);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.clinic-info-list .info-item.full-width {
    width: 100%;
}

.clinic-description {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.clinic-description h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clinic-description p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.discount-badge-large {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Navbar altındaki boşluk için */
.content-wrapper {
    padding-top: 90px !important; /* Navbar yüksekliği + ekstra boşluk */
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .navbar {
        width: 100%;
    }
    
    .content-wrapper {
        padding-top: 85px !important;
    }
}

/* Avantaj Kartları Stilleri */
.advantage-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.advantage-card:hover .card-img-top {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    left: 15px;
    top: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #2d3436;
    font-weight: 600;
    z-index: 1;
}

.discount-badge {
  
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5253);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
    z-index: 1;
}

.card-body {
    padding: 1.5rem;
    background: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2d3436;
}

.card-text {
    color: #636e72;
    margin-bottom: 1rem;
}

.expiry-date {
    color: #b2bec3;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.expiry-date i {
    margin-right: 5px;
    color: #ff7675;
}

.btn-details {
    background: #425476;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-details:hover {
    background: #364561;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 84, 118, 0.3);
    color: white;
}

/* Ayarlar Sayfası Stilleri */
.settings-tabs .nav-pills {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    display: flex;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.settings-tabs .nav-link {
    color: var(--text-muted);
    padding: 12px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.settings-tabs .nav-link:hover {
    background: var(--hover-bg);
    color: var(--primary-color);
}

.settings-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.settings-tabs .nav-link i {
    font-size: 1.2rem;
}

.settings-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.settings-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.settings-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-body {
    padding: 20px;
}

.profile-image-upload {
    text-align: center;
}

.profile-image-upload img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--hover-bg);
}

.notification-setting, .system-setting {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.notification-setting:last-child, .system-setting:last-child {
    border-bottom: none;
}

.setting-title {
    display: block;
    font-weight: 500;
    color: var(--text-color);
}

.setting-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.system-setting {
    margin-bottom: 20px;
}

.system-setting:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .settings-tabs .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 8px;
    }

    .settings-tabs .nav-link {
        white-space: nowrap;
        padding: 8px 15px;
    }
}

/* Ayarlar Sayfası - Accordion Stilleri */
.settings-title {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.custom-accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0.75rem;
    --bs-accordion-inner-border-radius: 0.75rem;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-btn-color: var(--text-color);
    --bs-accordion-btn-bg: #fff;
    --bs-accordion-btn-focus-border-color: none;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 1.5rem;
    --bs-accordion-active-color: var(--primary-color);
    --bs-accordion-active-bg: #fff;
}

.custom-accordion .accordion-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.custom-accordion .accordion-button {
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 0.75rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.2s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.custom-accordion .accordion-button i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.custom-accordion .accordion-button:not(.collapsed) i {
    color: var(--primary-color);
}

.custom-accordion .accordion-body {
    background-color: var(--hover-bg);
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

/* Hover efektleri */
.custom-accordion .accordion-button:hover {
    background-color: var(--hover-bg);
}

.custom-accordion .accordion-button:hover i {
    transform: scale(1.1);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .custom-accordion .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .custom-accordion .accordion-body {
        padding: 1rem;
    }
} 

/* Login Sayfası Stilleri */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
}

.modern-login-container {
    width: 1000px;
    height: 600px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.login-image-side {
    width: 45%;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1000') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
}

.login-image-side .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(66, 84, 118, 0.8);
}

.login-image-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.login-image-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.login-image-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.login-form-side {
    width: 55%;
    padding: 60px;
    display: flex;
    align-items: center;
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-logo {
    max-width: 160px;
    height: auto;
}

.login-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.input-group {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.input-group-text {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding-left: 15px;
}

.login-form .form-control {
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
    background: transparent;
}

.login-form .form-control:focus {
    box-shadow: none;
}

.input-group:focus-within {
    border-color: var(--primary-color);
}

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

.btn-primary {
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 12px;
}

.register-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.register-link:hover {
    text-decoration: underline;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .modern-login-container {
        width: 90%;
        height: auto;
        flex-direction: column;
    }

    .login-image-side {
        width: 100%;
        height: 200px;
    }

    .login-form-side {
        width: 100%;
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .login-image-side {
        height: 150px;
        padding: 20px;
    }

    .login-image-content h2 {
        font-size: 1.8rem;
    }

    .login-image-content p {
        font-size: 1rem;
    }
} 

/* Password toggle butonu düzenleme */
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-toggle i {
    font-size: 1.1rem;
}

/* Giriş yap butonu renk düzenleme */
.btn-primary {
    background-color: var(--primary-color) !important;
    border: none;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--secondary-color) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(66, 84, 118, 0.2);
} 

.forgot-password {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-color);
    text-decoration: none;
} 

/* Register Sayfası Stilleri */
.register-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    padding: 40px 0;
}

.modern-register-container {
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.register-header-section {
    background: linear-gradient(135deg, rgba(66, 84, 118, 0.95), rgba(44, 62, 80, 0.95)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200') center/cover;
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
}

.register-header-section::before {
    display: none;
}

.register-logo {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.register-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.register-welcome, .register-features {
    position: relative;
    z-index: 2;
}

.register-welcome {
    margin-bottom: 30px;
}

.register-welcome h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.register-welcome p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.register-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.feature-item span {
    font-size: 0.95rem;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.register-form-container {
    padding: 40px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .modern-register-container {
        width: 95%;
        margin: 20px;
    }

    .register-header-section {
        padding: 30px 20px;
    }

    .register-features {
        gap: 20px;
    }

    .register-welcome h2 {
        font-size: 1.8rem;
    }

    .register-form-container {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .register-features {
        flex-direction: column;
        gap: 15px;
    }

    .feature-item {
        flex-direction: row;
        justify-content: center;
    }

    .feature-item i {
        font-size: 1.5rem;
        margin-right: 10px;
    }
} 

/* Form alanları için yeni stiller */
.form-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.form-label {
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.form-control, .form-select {
    padding: 8px 12px;
    font-size: 0.9rem;
}

.mb-3 {
    margin-bottom: 12px !important;
}

.mb-4 {
    margin-bottom: 15px !important;
}

.register-form-container {
    padding: 25px;
}

.register-header {
    margin-bottom: 20px;
}

.register-header h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.register-header p {
    font-size: 0.9rem;
}

/* Header section boyutu düzenleme */
.register-header-section {
    padding: 30px;
}

.register-welcome h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.register-welcome p {
    font-size: 1rem;
}

.register-features {
    margin-top: 20px;
    gap: 30px;
}

.feature-item i {
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 0.9rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .register-form-container {
        padding: 15px;
    }
    
    .form-section {
        padding: 12px;
    }
} 

/* Firmalar Sayfası Stilleri */
.table-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.table-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.table-card-header h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Firma Arama Kutusu */
.table-search {
    position: relative;
    width: 300px;
}

.table-search input {
    width: 100%;
    height: 45px;
    padding: 0 45px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.table-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Global İndirim Ayarı */
.global-discount {
    width: 300px;
}

.global-discount .input-group {
    border-radius: 12px;
    overflow: hidden;
}

.global-discount input {
    border: 1px solid var(--border-color);
    border-right: none;
    height: 45px;
    padding: 0 15px;
}

.global-discount .input-group-text {
    background: white;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

.global-discount .btn {
    border-radius: 0 12px 12px 0;
    padding: 0 20px;
    background: var(--primary-color);
    border: none;
    color: white;
}

/* Firma Tablosu */
.company-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.company-table th {
    padding: 15px 20px;
    color: var(--text-muted);
    font-weight: 500;
    border: none;
    font-size: 0.95rem;
}

.company-table td {
    padding: 15px 20px;
    background: var(--light-gray);
    border: none;
    vertical-align: middle;
}

.company-table tr td:first-child {
    border-radius: 12px 0 0 12px;
}

.company-table tr td:last-child {
    border-radius: 0 12px 12px 0;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-info span {
    font-weight: 500;
    color: var(--text-color);
}

.discount-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.edit-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.2em;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: rgba(115, 103, 240, 0.1);
}

/* Firma Detay Offcanvas */
.company-detail-card {
    padding: 25px;
}

.company-header {
    text-align: center;
    margin-bottom: 30px;
}

.company-logo {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    margin-bottom: 15px;
    object-fit: cover;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.company-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
}

.info-content {
    flex: 1;
}

.info-content label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.info-content p {
    margin: 0;
    font-weight: 500;
    color: var(--text-color);
}

.discount-edit-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.discount-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.discount-input-group input {
    flex: 1;
    height: 45px;
    padding: 0 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.discount-input-group .input-group-text {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0 15px;
    height: 45px;
    display: flex;
    align-items: center;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .table-card-header {
        flex-direction: column;
        gap: 15px;
    }

    .table-search, .global-discount {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .company-table {
        min-width: 800px;
    }

    .table-responsive {
        margin: 0 -25px;
        padding: 0 25px;
        width: calc(100% + 50px);
    }
} 

/* Hekim Detay Offcanvas Stilleri */
.doctor-detail-card {
    padding: 25px;
}

.doctor-header {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.doctor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    margin: 0 auto 20px;
    border: 4px solid var(--hover-bg);
    overflow: hidden;
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-title h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.specialty-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--hover-bg);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hekim İstatistikleri */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stats-grid .stat-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stats-grid .stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* İletişim Bilgileri */
.contact-info {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--hover-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-list .info-item:hover {
    transform: translateX(5px);
    background: var(--light-gray);
}

.info-list .info-item i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-list .info-item div {
    flex: 1;
}

.info-list .info-item label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-list .info-item p {
    margin: 0;
    font-weight: 500;
    color: var(--text-color);
}

/* Düzenleme Butonu */
.edit-profile-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.edit-profile-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.edit-profile-btn i {
    font-size: 1.1rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 576px) {
    .doctor-header {
        padding: 20px;
    }

    .doctor-avatar {
        width: 100px;
        height: 100px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-list .info-item {
        padding: 12px;
    }
} 

/* Modern Takvim Ana Container */
.calendar-container {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Toolbar */
.fc .fc-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px !important;
}

/* Ay/Yıl Başlığı */
.fc .fc-toolbar-title {
    font-size: 20px !important;
    font-weight: 600;
    color: #333;
}

/* Butonlar */
.fc .fc-button {
    background: #f5f5f5 !important;
    border: none !important;
    color: #333 !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.fc .fc-button:hover {
    background: #eeeeee !important;
}

.fc .fc-button.fc-button-active {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Günler Başlıkları */
.fc th {
    padding: 12px !important;
    font-weight: 600 !important;
    color: #666 !important;
    font-size: 14px !important;
    text-transform: uppercase;
}

/* Günler */
.fc td {
    border: 1px solid #eee !important;
}

.fc .fc-daygrid-day {
    min-height: 120px !important;
}

/* Gün Numarası */
.fc .fc-daygrid-day-number {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 8px;
}

/* Bugün */
.fc .fc-day-today {
    background: #f8f9ff !important;
}

.fc .fc-day-today .fc-daygrid-day-number {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Randevular */
.fc .fc-event {
    background: white !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    margin: 2px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .calendar-container {
        padding: 16px;
    }
    
    .fc .fc-toolbar {
        flex-direction: column;
        gap: 12px;
    }
} 

/* Takvim Container */
.calendar-wrapper {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(66, 84, 118, 0.05);
    border: none;  /* Container çizgisini kaldırdık */
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding: 0 10px;
}

.calendar-header h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.calendar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 15px;
    border: none;  /* Buton container çizgisini kaldırdık */
}

.calendar-actions button {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.calendar-actions button:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(66, 84, 118, 0.1);
}

.current-month {
    font-weight: 600;
    color: var(--text-color);
    min-width: 120px;
    text-align: center;
    font-size: 16px;
}

/* Gün İsimleri */
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.weekday {
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gün Kartları */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    padding: 10px;
}

.day-card {
    background: #f8f9fa;  /* Hafif gri arka plan */
    border-radius: 20px;
    padding: 15px 10px;
    min-height: 110px;
    border: none;  /* Çizgiyi kaldırdık */
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.day-card::before {
    display: none;  /* Üst çizgi animasyonunu kaldırdık */
}

.day-card:hover {
    transform: translateY(-3px);
    background: white;  /* Hover'da beyaz arka plan */
    box-shadow: 0 5px 15px rgba(66, 84, 118, 0.08);
}

.day-header {
    text-align: center;
    margin-bottom: 10px;
}

.day-number {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 4px;
}

.day-month {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bugünün Kartı */
.day-card.today {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 5px 15px rgba(66, 84, 118, 0.2);
}

.day-card.today::before {
    display: none;
}

.day-card.today .day-number,
.day-card.today .day-month {
    color: white;
}

.day-card.today .appointment-indicator {
    background: rgba(255, 255, 255, 0.9);
}

/* Randevusu Olan Gün */
.appointment-indicator {
    background: white;
    border-radius: 12px;
    padding: 8px;
    margin-top: auto;
    text-align: center;
    box-shadow: 0 3px 10px rgba(66, 84, 118, 0.08);
}

.appointment-count {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 13px;
}

.day-card.today .appointment-count {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .calendar-grid {
        gap: 10px;
    }
    
    .day-card {
        padding: 10px;
        min-height: 100px;
    }
    
    .day-number {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .calendar-wrapper {
        padding: 20px 15px;
    }
    
    .calendar-header h5 {
        font-size: 20px;
    }
    
    .calendar-actions {
        padding: 5px 10px;
    }
    
    .weekday {
        font-size: 12px;
    }
}

/* Önceki ve sonraki ay günleri için stil */
.day-card.prev-month,
.day-card.next-month {
    opacity: 0.5;
    background: #f1f3f5;
}

.day-card.prev-month:hover,
.day-card.next-month:hover {
    opacity: 0.7;
    background: #f8f9fa;
}

/* Takvim grid düzenlemesi */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    padding: 10px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .day-card {
        min-height: 90px;
        padding: 10px 5px;
    }
    
    .day-number {
        font-size: 18px;
    }
    
    .day-month {
        font-size: 11px;
    }
    
    .appointment-indicator {
        padding: 5px;
    }
    
    .appointment-count {
        font-size: 11px;
    }
}

/* Geçmiş günler için stil */
.day-card.past-day {
    opacity: 0.5;
    background: #f1f3f5;
    cursor: not-allowed;
}

.day-card.past-day:hover {
    transform: none;
    box-shadow: none;
    background: #f1f3f5;
}

.day-card.past-day .appointment-indicator {
    display: none;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), #3B82F6);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(66, 84, 118, 0.15);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.35), transparent 60%);
    transform: rotate(25deg);
}

.hero-logo {
    max-width: 160px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25));
}

.hero-text {
    margin-left: 20px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: .9;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 250px;
        padding: 24px;
        border-radius: 16px;
    }
    .hero-logo {
        max-width: 120px;
    }
    .hero-title {
        font-size: 1.6rem;
    }
}