:root {
    --primary-color: #ffffff;
    --text-color: #2b3035;
    --text-muted: #6c757d;
    --hover-bg: #f8f9fa;
    --active-color: #314261;
    --border-color: #e9ecef;
    --shadow-color: rgba(0, 0, 0, 0.05);
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 280px;
    max-width: 280px;
    height: 100vh;
    background: var(--primary-color);
    color: var(--text-color);
    transition: all 0.3s;
    box-shadow: 2px 0 10px var(--shadow-color);
    border-right: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}

/* Mobil görünüm için */
@media (max-width: 768px) {
    #sidebar {
        padding-top: 0;
        margin-left: -280px;
    }
    
    #sidebar.show {
        margin-left: 0;
    }
    
    #content {
        width: 100%;
        margin-left: 0;
    }
}

/* Masaüstü görünüm için */
#sidebar.active {
    min-width: 80px;
    max-width: 80px;
}

.sidebar-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

/* Mobil görünüm için sidebar header düzeltmesi */
@media (max-width: 768px) {
    .sidebar-header {
        padding-top: 85px; /* Navbar yüksekliği + ekstra padding */
    }

    #sidebar {
        padding-top: 0;
        margin-left: -280px;
    }
    
    #sidebar.show {
        margin-left: 0;
    }
    
    #content {
        width: 100%;
        margin-left: 0;
    }
}

.sidebar-header .logo {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s;
}

#sidebar.active .sidebar-header {
    padding: 10px;
}

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

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

#sidebar ul li a:hover {
    background: rgba(49, 66, 97, 0.1);
    color: var(--active-color);
}

#sidebar ul li.active > a {
    background: rgba(49, 66, 97, 0.1);
    color: var(--active-color);
}

.bottom-item {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

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

.bottom-item a:hover {
    color: #fff !important;
    background: rgba(220, 53, 69, 0.9) !important;
}

#sidebar ul.components {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

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

#sidebar.active + #content {
    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;
    border: 1px solid rgba(231, 234, 239, 0.3);
    box-shadow: 0 1px 20px rgba(0,0,0,0.02);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

/* Sidebar kapalıyken navbar genişliği */
#sidebar.active ~ #content .navbar {
    width: calc(100% - 80px);
    transition: all 0.3s;
}

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

#sidebarCollapse {
    display: block;
    color: var(--text-muted);
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#sidebarCollapse:hover {
    background: rgba(49, 66, 97, 0.1);
    color: var(--active-color);
}

#sidebarCollapse i {
    font-size: 1.5rem;
}

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

.user-info img {
    width: 40px !important;
    height: 40px !important;
    border: 2px solid var(--active-color);
    border-radius: 50%;
    object-fit: contain;
    padding: 2px;
    background: white;
}

.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: 768px) {
    #sidebar {
        margin-left: -280px;
    }
    
    #sidebar.show {
        margin-left: 0;
    }
    
    #content {
        width: 100%;
        margin-left: 0;
    }

    /* Hamburger menü butonu stil */
    #sidebarCollapse {
        display: block;
        border: none;
        background: transparent;
        padding: 10px;
        cursor: pointer;
    }

    #sidebarCollapse i {
        font-size: 1.5rem;
        color: var(--text-color);
    }

    /* Overlay stil */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sidebar-overlay.show {
        display: block;
        opacity: 1;
    }
}

#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(--active-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-item.dropdown .nav-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f8f9fa;
    color: #6c757d;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #e9ecef;
}

.nav-item.dropdown .nav-link:hover {
    background: #425476;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    border-color: #425476;
}

.nav-item.dropdown .nav-link:hover i {
    color: #ffffff;
}

/* Bildirim sayısı badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid #f8f9fa;
}

/* 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(--active-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(135deg, 
        #2A3F54 0%,
        #3B5173 25%,
        #4B638F 50%,
        #5A74AA 75%,
        #6985C5 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(43, 63, 107, 0.15);
}

.dashboard-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 50%
    );
    pointer-events: none;
}

.dashboard-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('/images/wave-pattern.svg') no-repeat center right;
    background-size: cover;
    opacity: 0.1;
    animation: waveFloat 10s ease-in-out infinite;
}

@keyframes waveFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.banner-text h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-logo {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out;
}

.banner-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.banner-logo .tagline {
    color: white;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        margin-bottom: 30px;
    }

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

    .banner-logo {
        margin-top: 20px;
    }

    .banner-logo img {
        max-width: 150px;
    }
}

/* 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(49, 66, 97, 0.1);
    color: var(--active-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(--active-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(--active-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: 600px;
    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(--active-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(--active-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(--active-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: #425476 !important;
    border: none;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #364561 !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(--active-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 */
.stat-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Default kart (Kullanıcı Sayısı) */
.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
}

.stat-card-icon i {
    font-size: 24px;
    color: #6366f1;
}

/* Mavi kart (Randevu Sayısı) */
.stat-card-icon.blue {
    background: rgba(59, 130, 246, 0.1);
}

.stat-card-icon.blue i {
    color: #3b82f6;
}

/* Mor kart (İndirim Sağlayan Klinik) */
.stat-card-icon.purple {
    background: rgba(168, 85, 247, 0.1);
}

.stat-card-icon.purple i {
    color: #a855f7;
}

/* Yeşil kart (Toplam Kazanç) */
.stat-card-icon.green {
    background: rgba(34, 197, 94, 0.1);
}

.stat-card-icon.green i {
    color: #22c55e;
}

.stat-card-body {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.stat-card-info {
    flex-grow: 1;
}

.stat-card-value {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #1e293b;
}

.stat-card-label {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    margin-top: 0.25rem;
}

/* Trend göstergeleri için yeni stiller */
.stat-card-trend {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.stat-card-trend.positive {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.stat-card-trend.negative {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.stat-card-trend i {
    font-size: 1rem;
}

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

/* 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(--active-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;
    color: #2b3035;
    padding: 8px 15px;
    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(--active-color);
}

.settings-tabs .nav-link.active {
    background: var(--active-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;
    margin-bottom: 20px;
}

.profile-image-upload img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 15px;
    border: 4px solid var(--hover-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: white;
    padding: 15px;
}

.profile-image-upload img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.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(--active-color);
    border-color: var(--active-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(--active-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(--active-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(--active-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(49, 66, 97, 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(--active-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(--active-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(--active-color);
}

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

/* Giriş yap butonu renk düzenleme */
.btn-primary {
    background-color: #425476 !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: #364561 !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(--active-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;
    }
} 

/* Belge yükleme alanı stilleri */
.upload-area {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: var(--active-color);
    background: rgba(66, 84, 118, 0.05);
}

.upload-area input[type="file"] {
    background: transparent;
    border: none;
    padding: 0;
}

.upload-area input[type="file"]:focus {
    outline: none;
    box-shadow: none;
}

.upload-area small {
    font-size: 0.8rem;
    color: #6c757d;
}

.upload-area small i {
    margin-right: 5px;
} 

/* Şifremi unuttum sayfası için ek stiller */
.back-to-login {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.back-to-login:hover {
    color: var(--active-color);
    transform: translateX(-5px);
}

.back-to-login i {
    font-size: 1.1rem;
}

/* Info mesajı için stil */
.text-muted i {
    font-size: 0.9rem;
    margin-right: 5px;
} 

/* Kampanya Detay Stilleri */
.campaign-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    border: 1px solid #e9ecef;
    animation: slideIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, transparent, rgba(108, 92, 231, 0.03));
    border-radius: 0 15px 0 50%;
}

.campaign-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
    position: relative;
}

.campaign-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.campaign-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.campaign-icon:hover::before {
    transform: rotate(90deg);
}

.icon-primary {
    background: linear-gradient(135deg, #6c5ce7, #8067ef);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2);
}

.icon-info {
    background: linear-gradient(135deg, #0984e3, #2998e6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.2);
}

.icon-success {
    background: linear-gradient(135deg, #00b894, #1dd1a1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.2);
}

.campaign-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    margin: 0;
}

.campaign-body {
    color: #636e72;
    position: relative;
}

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

.discount-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.discount-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, transparent, rgba(108, 92, 231, 0.05));
    border-radius: 0 10px 0 50%;
}

.discount-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: #fff;
}

.points-section {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.points-section i {
    color: #6c5ce7;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.discount-item:hover .points-section i {
    transform: rotate(360deg);
}

.date-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    gap: 20px;
}

.date-block {
    flex: 1;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.date-block:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.date-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2d3436;
    font-weight: 500;
    margin-bottom: 8px;
}

.date-label i {
    color: #6c5ce7;
    transition: transform 0.3s ease;
}

.date-block:hover .date-label i {
    transform: scale(1.2);
}

.date-value {
    color: #6c5ce7;
    font-weight: 600;
    margin: 0;
}

.date-separator {
    color: #b2bec3;
    font-size: 1.2rem;
}

.date-separator i {
    transition: transform 0.3s ease;
}

.date-grid:hover .date-separator i {
    transform: translateX(5px);
}

.contact-list {
    display: grid;
    gap: 15px;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, transparent, rgba(108, 92, 231, 0.05));
    border-radius: 0 10px 0 50%;
}

.contact-item:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #6c5ce7, #8067ef);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon::before {
    transform: rotate(90deg);
}

.contact-icon i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-weight: 500;
    color: #2d3436;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #636e72;
    font-size: 0.95rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Contact Info Styles */
.contact-info {
    padding: 15px;
}

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

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: white;
}

.contact-item i {
    font-size: 1.5rem;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.contact-item p, .contact-item a {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-item a:hover {
    color: var(--active-color);
} 