html, body {
    height: 100%;
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main, .container-fluid {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
    width: 100%;
    background: #1c6071;
    color: #fff;
    margin-top: auto;
    position: relative;
    bottom: 0;
    left: 0;
}

/* Modern Admin Panel Styles */

/* Base Admin Panel Styles */
.admin-panel {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.admin-content {
    margin-left: 250px;
    padding: 2rem;
    background: transparent;
    min-height: 100vh;
    overflow-y: auto;
}

/* Modern Card Styles */
.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Modern Button Styles */
.btn-modern {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary.btn-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-success.btn-modern {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.btn-danger.btn-modern {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

/* Modern Form Styles */
.form-control-modern {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-control-modern:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 1);
}

.form-label-modern {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Table Styles */
.table-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table-modern thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.table-modern thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.table-modern tbody tr {
    transition: all 0.2s ease;
    border: none;
}

.table-modern tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: scale(1.01);
}

.table-modern tbody td {
    border: none;
    padding: 1rem;
    vertical-align: middle;
}

/* Modern Modal Styles */
.modal-modern .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.modal-modern .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modal-modern .modal-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.modal-modern .btn-close {
    filter: invert(1);
}

.modal-modern .modal-body {
    padding: 2rem;
}

.modal-modern .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
}

/* Modern Badge Styles */
.badge-modern {
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-modern.badge-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.badge-modern.badge-success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.badge-modern.badge-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

/* Modern Alert Styles */
.alert-modern {
    border-radius: 16px;
    border: none;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.alert-modern.alert-success {
    background: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    border-left: 4px solid #48bb78;
}

.alert-modern.alert-danger {
    background: rgba(245, 101, 101, 0.1);
    color: #c53030;
    border-left: 4px solid #f56565;
}

.alert-modern.alert-info {
    background: rgba(66, 153, 225, 0.1);
    color: #2b6cb0;
    border-left: 4px solid #4299e1;
}

/* Modern Search and Filter Styles */
.search-filter-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-input {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
}

.search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    z-index: 10;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.bounce-in {
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 991px) {
    .admin-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .modern-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .search-filter-container {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .admin-content {
        padding: 0.5rem;
    }
    
    .modern-card {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .btn-modern {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .modal-modern .modal-body {
        padding: 1.5rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .admin-panel {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }
    
    .modern-card {
        background: rgba(45, 55, 72, 0.95);
        color: #e2e8f0;
    }
    
    .form-control-modern {
        background: rgba(45, 55, 72, 0.9);
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .table-modern {
        background: rgba(45, 55, 72, 0.95);
        color: #e2e8f0;
    }
}

/* Utility Classes */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-modern {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.shadow-modern-hover:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}
main {
    flex: 1 0 auto;
}
body {
    overflow-y: scroll;
}
footer {
    flex-shrink: 0;
    background-color: #1c6071;
    color: white;
    padding: 2rem 0;
    margin-top: 0 !important;
}
footer h5 {
    color: white;
    margin-bottom: 1rem;
}
footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: white;
}

/* Navbar Styles */
.site-logo {
    height: 36px !important;
    width: 36px !important;
    margin-right: 8px;
    display: block;
    object-fit: contain;
}
.navbar {
    background-color: #1c6071 !important;
    padding: 0.5rem 0;
    min-height: 64px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: 100%;
    box-sizing: border-box;
    transition: top 0.3s;
}
.navbar-hide {
    top: -100px !important;
}
.navbar .navbar-brand {
    margin-right: auto;
}
.navbar .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 1.5rem;
}
.navbar-nav {
    align-items: center;
}
.nav-link {
    color: #fff !important;
    font-size: 1.08rem;
    margin: 0 0.7rem;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.08);
    color: #ffd700 !important;
}

/* Dropdown Menu Styles */
.navbar .dropdown-menu {
    background: rgba(28, 96, 113, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin-top: 8px;
    padding: 8px 0;
    min-width: 200px;
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 1050 !important;
    transition: all 0.3s ease;
}

.navbar .dropdown-item {
    color: #fff !important;
    padding: 10px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffd700 !important;
    transform: translateX(5px);
}

/* Dropdown açık durumda görünürlük (sadece mobil için) */
@media (max-width: 991px) {
    .navbar .dropdown.show .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

/* Bootstrap dropdown'ları için hover desteği */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown.show .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Dropdown kapalı durumda gizli kalmalı */
    .navbar .dropdown:not(:hover):not(.show) .dropdown-menu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    /* Dropdown menü içeriğine hover yapıldığında menünün açık kalması */
    .navbar .dropdown-menu:hover {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Dropdown'lar arası geçiş için daha keskin sınırlar */
    .navbar .dropdown {
        position: relative;
    }
    
    .navbar .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        transform: translateX(-50%);
        z-index: 1050 !important;
        min-width: 200px;
        text-align: center;
        width: fit-content;
    }
    
    /* Hover olmadığında kesin gizleme */
    .navbar .dropdown:not(:hover):not(.show) > .dropdown-menu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    /* Dropdown'lar arası geçişte diğer dropdown'ı kapat */
    .navbar .dropdown:hover ~ .dropdown .dropdown-menu,
    .navbar .dropdown:hover + .dropdown .dropdown-menu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

.navbar .dropdown-item i {
    font-size: 1.1em;
    width: 20px;
    text-align: center;
    margin-right: 8px;
    flex-shrink: 0;
}

.navbar .dropdown-toggle::after {
    border-top-color: #fff;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown animation */
.dropdown-menu {
    animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
.navbar-toggler {
    border: none;
    outline: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
@media (max-width: 991px) {
    .navbar .navbar-nav {
        margin-left: 0;
        margin-right: 0;
    }
    .navbar-nav {
        background: #1c6071;
        border-radius: 0 0 12px 12px;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }
    .nav-link {
        margin: 0.3rem 0;
        padding: 0.7rem 1rem;
    }
    
    /* Mobile dropdown styles */
    .navbar .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        min-width: auto;
        border-radius: 0;
    }
    
    .navbar .dropdown-item {
        color: #fff !important;
        padding: 0.5rem 2rem;
        font-size: 0.95rem;
        margin: 0;
        border-radius: 0;
    }
    
    .navbar .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }
    
    .navbar .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/assets/images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
    z-index: 1;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section h1:not(.admin-panel h1):not(.login.container h1) {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    color: #fff !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    padding-top: 20px;
    margin-top: 40px;
}
.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
}
.hero-section .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    border: none;
    color: #000;
}
.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #e0e0e0, #fff);
}
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 100px 0;
        min-height: 250px;
        background-attachment: scroll;
    }
    .hero-section h1:not(.admin-panel h1):not(.login.container h1) {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1.2rem;
    }
}


/* Why Choose Us section arka planı */
.whychoose-section {
    background: #232323 !important;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-bottom: 0 !important;
}

.whychoose-section h2 {
    color: #fff !important;
    letter-spacing: 1px;
    font-weight: 700;
} 

/* Neden Biz? kartları beyaz ve gölgeli */
.why-us-card {
    background: #fff !important;
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 24px 18px;
    min-height: 260px;
    color: #222 !important;
}
.why-us-card img {
    display: block;
    margin-bottom: 16px;
}
.why-us-card .card-title {
    color: #17607a !important;
}
.why-us-card .card-text {
    color: #444 !important;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-section h1:not(.admin-panel h1):not(.login.container h1) {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1.2rem;
    }
}

/* --- Admin Paneli Özel Stilleri --- */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    background: rgba(32, 102, 116, 0.95);
    color: #fff;
    padding: 20px 0px 20px 8px;
    min-height: 100vh;
    overflow-y: auto !important;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #205e74 rgba(32, 102, 116, 0.95);
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    scrollbar-gutter: stable;
}
.admin-sidebar::-webkit-scrollbar {
    width: 7px;
    background: #e9ecef;
    opacity: 1 !important;
}
.admin-sidebar::-webkit-scrollbar-thumb {
    background: #205e74;
    border-radius: 6px;
    opacity: 1 !important;
}
.sidebar-title {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 3.2rem;
    text-align: center;
}
.sidebar-group { margin-bottom: 10px; }
.sidebar-group .sidebar-toggle {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    background: linear-gradient(90deg, #e0eafc 0%, #cfdef3 100%);
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
    transition: background 0.25s, box-shadow 0.25s, color 0.2s;
    color: #205e74;
    border-radius: 10px;
    position: relative;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px 0 rgba(32,94,116,0.07);
}
.sidebar-group .sidebar-toggle .group-icon { margin-right: 10px; font-size: 1.2em; }
.sidebar-group .sidebar-toggle .arrow { margin-left: auto; transition: transform 0.3s; font-size: 1.1em; margin-right: 4px; }
.sidebar-group .sidebar-toggle.active .arrow { transform: rotate(90deg); }
.sidebar-group .sidebar-toggle .arrow.down { transform: rotate(90deg); }
.sidebar-group .sidebar-toggle .arrow.right { transform: rotate(0deg); }
.sidebar-group .sidebar-toggle.active,
.sidebar-group .sidebar-toggle:hover {
    background: linear-gradient(90deg, #d1eaff 0%, #b8d8f4 100%);
    color: #174a5a;
    box-shadow: 0 4px 16px 0 rgba(32,94,116,0.13);
}
.sidebar-group .sidebar-collapse { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.33,1,0.68,1); background: transparent; }
.sidebar-group .sidebar-collapse.open { max-height: 500px; }
.sidebar-group .sidebar-collapse .nav-link {
    font-size: 1.08rem;
    color: #fff;
    padding: 10px 0 10px 36px;
    margin: 6px 0;
    opacity: 0.97;
}
.sidebar-group .sidebar-collapse .nav-link.active { font-weight: bold; color: #205e74 !important; background: #e0eafc; border-radius: 6px; }
.sidebar-group .sidebar-collapse .nav-link.active i { color: #205e74 !important; }
.sidebar-footer-link { display: flex; align-items: center; font-size: 1rem; color: #fff; margin-bottom: 10px; padding: 6px 12px; border-radius: 4px; transition: background 0.2s, color 0.2s; text-decoration: none; gap: 10px; }
.sidebar-footer-link i { font-size: 1.2em; }
.sidebar-footer-link:hover { background: rgba(255,255,255,0.12); color: #ffd600; text-decoration: none; }
.sidebar-panel-btn { display: flex; align-items: center; padding: 10px 18px; background: linear-gradient(90deg, #e0eafc 0%, #cfdef3 100%); border: none; width: 100%; text-align: left; outline: none; transition: background 0.25s, box-shadow 0.25s, color 0.2s; color: #205e74; border-radius: 10px; position: relative; font-size: 1.1rem; font-weight: bold; box-shadow: 0 2px 8px 0 rgba(32,94,116,0.07); margin-bottom: 12px; text-decoration: none; }
.sidebar-panel-btn .group-icon { margin-right: 10px; font-size: 1.2em; }
.sidebar-panel-btn:hover { background: linear-gradient(90deg, #d1eaff 0%, #b8d8f4 100%); color: #174a5a; box-shadow: 0 4px 16px 0 rgba(32,94,116,0.13); text-decoration: none; }

/* Profil ve genel admin stilleri */
.profile-main-row { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.profile-avatar { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 4px solid #e0eafc; box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08); }
.profile-info-box { flex: 1; min-width: 220px; display: flex; flex-direction: column; justify-content: center; height: 110px; }
.truckersmp-box { background: #f4f8fb; border-radius: 12px; padding: 1rem 1.2rem; display: flex; align-items: center; gap: 0.7rem; margin-top: 0.7rem; }
.truckersmp-link { color: #1c6071; font-weight: 500; text-decoration: underline; word-break: break-all; }
.copy-btn { border-radius: 8px; border: none; background: #e0eafc; color: #1c6071; font-size: 1.1rem; padding: 0.3rem 0.7rem; transition: background 0.2s; }
.copy-btn:hover { background: #b2d6f6; }
.section-title { font-size: 1.15rem; font-weight: 700; color: #1c6071; margin-bottom: 1rem; margin-top: 2.2rem; }
.section-box { background: #fff; border-radius: 14px; box-shadow: 0 2px 16px rgba(44, 62, 80, 0.07); padding: 2.2rem 2rem 1.7rem 2rem; margin-bottom: 1.5rem; width: 100%; }
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.1rem 1.5rem; }
.input-group-text { background: #f4f8fb; border: none; color: #1c6071; font-size: 1.2rem; }
.form-control { border-radius: 10px; border: 1px solid #e0eafc; background: #f8fafc; }
.btn-primary {
    background: #1c6071;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.7rem 0;
    transition: box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
    background: #174a5a;
    color: #fff;
}

/* Mesajlar ve bildirimler */
.message-preview { max-width: 300px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.unread { background-color: #f8f9fa; }
.unread:hover { background-color: #e9ecef; }

/* Modal ve tablo stilleri */
.modal { overflow-y: auto !important; }
.modal.show { display: flex !important; align-items: center; justify-content: center; min-height: 100vh; background: rgba(0,0,0,0.4); }
.modal-dialog { margin: 1.75rem auto; max-width: 900px; width: 100%; }
.modal.fade .modal-dialog { transition: none !important; }
.modal-content { max-height: 90vh; overflow-y: auto; }
.vtc-suggestions { position: absolute !important; top: 100%; left: 0; width: 100%; z-index: 1050; }
.input-group.mb-2.position-relative { position: relative; }
.member-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.role-badge { padding: 5px 10px; border-radius: 4px; color: white; font-size: 0.8em; background-color: #1c6071; margin-right: 6px; }
.sortable { position: relative; user-select: none; transition: background 0.2s, color 0.2s; }
.sortable:hover, .sortable.active { background: #eaf6fa; color: #1c6071; }
.sortable .sort-arrow { font-size: 1em; margin-left: 6px; transition: transform 0.2s, color 0.2s; opacity: 0.7; display: inline-block; }
.sortable.active .sort-arrow { opacity: 1; color: #1c6071; }

/* Takvim ve etkinlik detayları */
.event-details { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.2); z-index: 1000; max-width: 90%; width: 500px; }
.event-details img { max-width: 100%; height: auto; margin-bottom: 15px; }
.overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 999; }
.event-badge { padding: 5px 10px; border-radius: 4px; color: white; font-size: 0.8em; }
.event-badge.ets2 { background-color: #4CAF50; }
.event-badge.ats { background-color: #2196F3; }

@media (max-width: 900px) {
    .profile-main-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}
@media (max-width: 600px) {
    .section-box { padding: 1rem 0.3rem 1rem 0.3rem; }
}

.staffcard {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    position: relative;
    background: #fff;
    border: 1.5px solid #e0eafc;
    border-radius: 28px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    padding: 24px 18px;
    min-height: 320px;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #1c6071;
}
.staffcard:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.team-avatar {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin: 18px auto 12px auto;
    display: block;
    border: 3px solid #e0e0e0;
    background: #f8f9fa;
}
.staffcard .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1c6071;
    margin-bottom: 0.3rem;
}
.staffcard .card-text {
    color: #1c6071;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.staffcard .card-body {
    flex: 1 1 auto;
    width: 100%;
}
.social-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.social-box .btn,
.social-box span.btn {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-all;
}

.team-section {
    padding: 80px 0;
}
.team-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: none;
}
.team-card:hover {
    transform: translateY(-10px);
}
.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid #007bff;
}
.team-card .card-body {
    padding: 25px;
}
.team-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.team-card .card-subtitle {
    color: #007bff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.team-card .card-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}
.social-links {
    margin-top: 20px;
}
.social-links a {
    color: #007bff;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #0056b3;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}
@media (max-width: 768px) {
    .team-section {
        padding: 40px 0;
    }
    .team-title {
        font-size: 2rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* --- index.php'den taşınan stiller --- */
.stats-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
}
.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(28,96,113,0.1);
    margin-bottom: 1rem;
}
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* --- partners.php'den taşınan stiller --- */
.partner-card {
    transition: transform 0.2s;
    border: 1px solid rgba(0,0,0,0.1);
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.partner-logo {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1rem;
    background: #fff;
}
.partner-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}
.partner-links .btn {
    width: 60%;
    max-width: 120px;
    font-size: 0.85rem;
    padding: 0.25rem 0.4rem;
}

/* --- calendar.php'den taşınan stiller --- */
.fc-event {
    cursor: pointer;
    padding: 3px 6px;
    margin: 2px 0;
    border-radius: 4px;
    font-size: 0.9em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: none !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.fc-event-title {
    font-weight: 500;
    letter-spacing: 0.3px;
}
.fc-daygrid-day {
    min-height: 120px !important;
    background: transparent !important;
}
.fc-daygrid-day-number {
    font-size: 1.1em;
    font-weight: 500;
    padding: 8px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.fc-header-toolbar, .fc-toolbar, .fc-toolbar-chunk {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
}
.fc-toolbar-title {
    text-align: center !important;
    width: auto !important;
    flex: none !important;
    margin: 0 auto !important;
    font-size: 1.8em !important;
    font-weight: 600 !important;
    color: #1c6071;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}
.fc-button-primary {
    background-color: #1c6071 !important;
    border-color: #1c6071 !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    font-size: 0.85em;
    padding: 0.5em 1em;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(28, 96, 113, 0.2);
}
.fc-button-primary:hover {
    background-color: #164c5a !important;
    border-color: #164c5a !important;
    box-shadow: 0 4px 8px rgba(28, 96, 113, 0.3);
}
.fc-button-primary:not(:disabled):active,
.fc-button-primary:not(:disabled).fc-button-active {
    background-color: #164c5a !important;
    border-color: #164c5a !important;
    box-shadow: 0 2px 4px rgba(28, 96, 113, 0.2);
}
.fc-day-today {
    background-color: rgba(28, 96, 113, 0.05) !important;
}

/* Calendar background styling */
#calendar {
    position: relative;
    min-height: 600px;
}

#calendar .fc {
    position: relative;
    z-index: 1;
}

/* Takvim tablosunun arka planına resim */
.fc-view-harness {
    background-image: url('/assets/images/calendar.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.fc-view-harness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.fc-view-harness .fc-view {
    position: relative;
    z-index: 1;
}

/* Takvim hücrelerinin arka planını şeffaf yap */
.fc-daygrid-day-frame {
    background: transparent !important;
}

.fc-daygrid-day-events {
    background: transparent !important;
}

.fc-daygrid-day-bg {
    background: transparent !important;
}
.fc-daygrid-event-dot {
    border-color: #fff !important;
}
.fc-theme-standard td, .fc-theme-standard th {
    border-color: #eee;
}
.fc-col-header-cell {
    background-color: rgba(248, 249, 250, 0.8);
    padding: 10px 0;
}
.fc-col-header-cell-cushion {
    color: #1c6071;
    font-weight: 600;
    text-decoration: none;
    padding: 8px;
}
.card {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
}
.card-body {
    padding: 2rem;
}
h1:not(.admin-panel h1):not(.login.container h1) {
    color: #1c6071;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    padding-top: 20px;
    margin-top: 40px;
}
@media (max-width: 600px) {
    .fc .fc-toolbar-title {
        font-size: 1.2rem;
    }
    .fc .fc-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.9rem;
    }
    .fc-daygrid-day {
        min-height: 80px;
    }
    .event-details {
        width: 95%;
        padding: 15px;
    }
    .card-body {
        padding: 1rem;
    }
    .card {
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .profile-avatar {
        width: 80px;
        height: 80px;
    }
    .card.mx-auto {
        max-width: 100%;
    }
    .card.mx-auto:hover {
        transform: none;
    }
    .social-grid {
        grid-template-columns: 1fr;
    }
    .social-grid .form-control {
        font-size: 0.9rem;
    }
}

/* --- Profile --- */
.profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e0eafc;
    margin-bottom: 10px;
}
.card.mx-auto {
    transition: none !important;
}
.card.mx-auto:hover {
    box-shadow: none !important;
    transform: none !important;
}

/* Admin paneli ve tablolar için hover efektlerini tamamen kaldır */
.card,
.card:hover,
.table-hover tbody tr:hover {
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem 1.5rem;
}
.social-grid .form-control {
    min-width: 320px;
    max-width: 100%;
}

@media (max-width: 500px) {
    .social-box {
        flex-wrap: wrap;
        gap: 6px 0;
    }
    .social-box .btn,
    .social-box span.btn {
        min-width: 48%;
        margin-bottom: 4px;
    }
}

@media (max-width: 600px) {
    .social-box {
        flex-wrap: wrap;
        gap: 6px 0;
        justify-content: center;
    }
    .social-box .btn,
    .social-box span.btn {
        min-width: 100%;
        margin-bottom: 4px;
        justify-content: flex-start;
    }
}

.staffcard .card-title,
.staffcard .card-text {
    word-break: break-word;
}

@media (max-width: 600px) {
    .staffcard {
        min-width: 0;
        padding: 16px 6px;
    }
    .staffcard .card-title {
        font-size: 0.95rem;
        letter-spacing: 0;
        line-height: 1.1;
    }
    .staffcard .card-text {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    .team-avatar {
        width: 80px;
        height: 80px;
        margin: 10px auto 8px auto;
    }
    .social-box {
        margin-bottom: 10px;
    }
    .team-section h1,
    .team-title {
        font-size: 1.3rem !important;
    }
}

.table-hover tbody tr:hover {
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    background: inherit !important;
    color: inherit !important;
}

.driver-card-modern {
    border-radius: 20px;
    background: linear-gradient(135deg, #fafdff 60%, #eaf6fa 100%);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s, border 0.2s;
    border: 1.5px solid #eaf6fa;
    min-height: 320px;
}
.driver-card-modern:hover {
    box-shadow: 0 8px 32px rgba(28,96,113,0.13);
    border: 1.5px solid #1c6071;
}
.driver-avatar-wrapper {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(28,96,113,0.08);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.driver-avatar-modern {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #1c6071;
}
.driver-username-modern {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}
.role-badge-modern {
    padding: 6px 14px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.97em;
    background: #1c6071;
    margin: 2px 3px;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(28,96,113,0.07);
}

/* Admin paneli için modern avatar stili */
.avatar-admin, .admin-content img.avatar-admin, .admin-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 12px; /* Kareye yakın, hafif yuvarlatılmış */
    border: 2px solid #e0e0e0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(28,96,113,0.10);
    display: inline-block;
    padding: 2px;
    margin: 0 auto;
}

/* Tamamen yuvarlak istenirse border-radius: 50% eklenebilir */
.avatar-admin.rounded-circle {
    border-radius: 50%;
}

@media (max-width: 600px) {
    .avatar-admin, .admin-content img.avatar-admin, .admin-avatar {
        width: 36px;
        height: 36px;
    }
}

.maintenance-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.maintenance-content {
    text-align: center;
    padding: 2rem;
}
.maintenance-icon {
    font-size: 5rem;
    color: #1c6071;
    margin-bottom: 1rem;
}

.navbar-dark-bg {
    background-color: #1c6071 !important;
}

.hero-section-bg {
    background-image: url('/assets/images/background.png');
}

.admin-content {
    margin-left: 250px;
    padding: 2rem;
    background: #f8f9fa;
    min-height: 100vh;
    overflow-y: auto;
}
@media (max-width: 991px) {
    .admin-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw !important;
        min-width: 0 !important;
        max-width: 100vw !important;
        height: auto;
        z-index: 2000;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
        overflow-x: auto;
        overflow-y: visible;
    }
    .admin-sidebar > div {
        width: 100%;
    }
    .sidebar-group,
    .sidebar-panel-btn {
        width: 100%;
        margin-bottom: 6px;
    }
    .sidebar-title {
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
    }
    .admin-content {
        margin-left: 0 !important;
        padding: 1rem;
    }
}
@media (max-width: 600px) {
    .admin-sidebar {
        font-size: 0.95rem;
        padding: 2px 0 2px 0;
    }
}

/* News sayfası özel butonu */
.btn-news {
    background: #e9ecef !important;
    color: #205e74 !important;
    border: none !important;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.btn-news:hover, .btn-news:focus {
    background: #d1d5db !important;
    color: #174a5a !important;
}

/* Partners sayfası Discord butonu */
.btn-discord {
    background: #5865F2 !important;
    color: #fff !important;
    border: none !important;
}
.btn-discord:hover, .btn-discord:focus {
    background: #404eed !important;
    color: #fff !important;
}

/* Partner kartları için modern butonlar */
.partner-links .btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(44,62,80,0.06);
    border: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    gap: 7px;
    padding: 0.35rem 0.9rem;
    width: auto;
    min-width: 0;
    margin-bottom: 6px;
}

.btn-discord-modern {
    background: #f5f6fa;
    color: #5865F2;
}
.btn-discord-modern:hover, .btn-discord-modern:focus {
    background: #e0e3f7;
    color: #404eed;
}

.btn-truckersmp-modern {
    background: #555;
    color: #fff;
    border: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.btn-truckersmp-modern:hover, .btn-truckersmp-modern:focus {
    background: #333;
    color: #fff;
}

.btn-event-map {
    background: #1c6071;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(44,62,80,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0.35rem 0.9rem;
    font-size: 1rem;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.btn-event-map:hover, .btn-event-map:focus {
    background: #174a5a;
    color: #fff;
}

.event-links .btn,
.event-links .btn-event-map,
.event-links .btn-sm {
    height: auto;
    min-width: 0;
    padding: 0.32rem 1.1rem;
    font-size: 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(44,62,80,0.06);
    margin-right: 8px;
    margin-bottom: 4px;
    vertical-align: middle;
    text-align: center;
    line-height: 1.2;
}
.event-links .btn:last-child {
    margin-right: 0;
}

.btn-events-main {
    background: #1c6071;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(44,62,80,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0.32rem 1.1rem;
    font-size: 1rem;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.btn-events-main:hover, .btn-events-main:focus {
    background: #174a5a;
    color: #fff;
}

.card-footer.bg-transparent {
    padding: 0.7rem 1rem 0.3rem 1rem;
    background: transparent;
    text-align: left;
    border-top: 1.5px solid #e0eafc;
}

.news-detail-card {
    max-width: 1100px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.13), 0 2px 16px rgba(44,62,80,0.07);
    padding: 2.7rem 2.5rem 2.2rem 2.5rem;
    border: 1.5px solid #e0eafc;
    position: relative;
    transition: box-shadow 0.18s;
}
.news-detail-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.2rem 0 1.2rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    object-fit: contain;
}
.news-detail-card img.centered-img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.news-detail-card {
    overflow: hidden;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.news-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.09);
    transition: transform 0.18s, box-shadow 0.18s;
    padding: 2rem 1.5rem 1.2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}
.news-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}
.news-card .news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1c6071;
    margin-bottom: 0.7rem;
}
.news-card .news-summary {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    flex: 1 1 auto;
}
.news-card .news-meta {
    font-size: 0.97rem;
    color: #888;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}
.news-card .btn-news {
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 0.6rem 0;
    width: 100%;
}
.news-card.pinned {
    border: 2px solid #ffd600;
    box-shadow: 0 4px 24px rgba(255,214,0,0.13);
}
.news-card.pinned::before {
    content: '\1F4CC';
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.3rem;
    color: #ffd600;
}

/* Hamburger Menü Butonu */
.sidebar-hamburger {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 2100;
    background: rgba(32,102,116,0.95);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 2px 8px rgba(32,94,116,0.13);
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 2099;
}

@media (max-width: 991px) {
    .sidebar-hamburger {
        display: block;
    }
    .admin-sidebar {
        position: fixed !important;
        left: -100vw;
        top: 0;
        width: 80vw !important;
        min-width: 0 !important;
        max-width: 80vw !important;
        height: 100vh;
        z-index: 2200;
        transition: left 0.3s cubic-bezier(0.33,1,0.68,1);
        box-shadow: 2px 0 16px rgba(32,94,116,0.13);
        display: block;
        padding: 0;
        overflow-y: auto;
    }
    .admin-sidebar.open {
        left: 0 !important;
    }
    .sidebar-overlay.active {
        display: block;
    }
    .admin-content {
        margin-left: 0 !important;
        padding: 1rem;
    }
}

/* Tüm scrollbar oklarını ve özel scrollbar köşesini gizle */
::-webkit-scrollbar-button,
::-webkit-scrollbar-corner {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
}
::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 6px;
}

/* Partnerler için modern kutu görünümü */
.partner-card-modern {
    background: #fff;
    border-radius: 24px;
    border: 2px solid #e0eafc;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13), 0 1.5px 8px rgba(44,62,80,0.07);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.2rem 1.2rem 1.7rem 1.2rem;
    text-align: center;
    min-height: 320px;
    position: relative;
    z-index: 1;
}
.partner-card-modern:hover {
    transform: scale(1.045) translateY(-6px);
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18), 0 2px 12px rgba(44,62,80,0.10);
    border-color: #b2d6f6;
}
.partner-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.1rem;
}
.partner-logo-modern {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #b2d6f6;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.13);
    background: #f8fafc;
    transition: all 0.2s;
}
.partner-logo-modern:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.18);
}
.partner-name-modern {
    color: #1c6071;
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}
.partner-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}
.partner-badges .badge {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.45em 1.1em 0.45em 1.1em;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    letter-spacing: 0.01em;
    border: 2px solid #e0eafc;
}
.partner-badges .badge.bg-success, .partner-badges .badge.bg-info {
    color: #fff;
    background: linear-gradient(90deg, #00c6fb 0%, #005bea 100%);
    border: none;
    text-shadow: 0 1px 4px #005bea44;
}
.partner-badges .badge.bg-info {
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
    color: #fff;
    border: none;
    text-shadow: 0 1px 4px #38f9d744;
}
.partner-links {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.7rem;
}
.partner-links .btn {
    border-radius: 14px;
    font-size: 1.08rem;
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6em;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    border: none;
    transition: all 0.18s;
    background: linear-gradient(90deg, #e0eafc 0%, #cfdef3 100%);
    color: #205e74;
}
.partner-links .btn i {
    font-size: 1.25em;
}
.partner-links .btn:hover {
    background: linear-gradient(90deg, #00c6fb 0%, #005bea 100%);
    color: #fff;
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 6px 18px rgba(44,62,80,0.13);
}
.partner-links .btn.btn-outline-primary {
    background: linear-gradient(90deg, #e0eafc 0%, #cfdef3 100%);
    color: #205e74;
    border: 2px solid #b2d6f6;
}
.partner-links .btn.btn-outline-primary:hover {
    background: linear-gradient(90deg, #00c6fb 0%, #005bea 100%);
    color: #fff;
    border: 2px solid #005bea;
}
.partner-links .btn.btn-outline-info {
    background: linear-gradient(90deg, #e0eafc 0%, #cfdef3 100%);
    color: #205e74;
    border: 2px solid #43e97b;
}
.partner-links .btn.btn-outline-info:hover {
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
    color: #fff;
    border: 2px solid #38f9d7;
}
@media (max-width: 900px) {
    .partner-card-modern {
        min-height: 250px;
        padding: 1rem;
    }
    .partner-logo-modern {
        width: 70px;
        height: 70px;
    }
    .partner-name-modern {
        font-size: 1rem;
    }
    .partner-links .btn {
        font-size: 1rem;
        padding: 0.6rem 1.1rem;
    }
}
@media (max-width: 576px) {
    .partner-card-modern {
        min-height: 200px;
        padding: 0.7rem;
    }
    .partner-logo-modern {
        width: 48px;
        height: 48px;
    }
    .partner-name-modern {
        font-size: 0.92rem;
    }
    .partner-badges .badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }
    .partner-links .btn {
        font-size: 0.95rem;
        padding: 0.5rem 0.7rem;
    }
}

/* Edit Slot, Edit Parking Area ve Edit Invitation modalı için ideal genişlik */
#editSlotModal .modal-dialog,
#editParkingAreaModal .modal-dialog,
.modal.edit-invitation-modal .modal-dialog {
    max-width: 600px !important;
    width: 95vw !important;
    min-width: 320px;
}
.modal.edit-invitation-modal .modal-body .form-control {
    min-width: 0;
    font-size: 1.1rem;
}
.modal.edit-invitation-modal .modal-body label {
    font-size: 1.05rem;
}

/* Add Invitation Modal */
.add-invitation-modal .modal-dialog {
    max-width: 600px !important;
    width: 95vw !important;
    min-width: 320px;
}
.add-invitation-modal .modal-body .form-control {
    min-width: 0;
    font-size: 1.1rem;
}
.add-invitation-modal .modal-body label {
    font-size: 1.05rem;
}

* {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .login.body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('/assets/images/loginbackground.png') no-repeat center center;
    background-size: cover;
  }
  
  
  .login.container {
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
  }
  
  .login.container h1 {
    font-size: 36px;
    text-align: center;
    color: #fff;
  }
  
  .login.container .login.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0px;
  }
  
  .login.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgb(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
  }
  
  .login.input-box input::placeholder {
    color: #fff;
  }
  
  .login.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
  
  .login.container .login.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0px 15px;
  }
  
  .login.remember-forgot label input {
    color: #fff;
    margin-right: 3px;
  }
  
  .login.remember-forgot a {
    color: #fff;
    text-decoration: none;
  }
  
  .login.remember-forgot a:hover {
    text-decoration: underline;
  }
  
  .login.container .btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 5px;
    box-decoration-break: 0px 0px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
  }
  
  .login.container .register-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0px 15px;
  }
  
  .login.register-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .login.register-link p a:hover {
    text-decoration: underline;
  }
                                           
/* Yeni Responsive İyileştirmeler */
@media (max-width: 480px) {
    /* Hero Section Mobil Optimizasyonu */
    .hero-section {
        min-height: 200px;
        padding: 40px 0;
        background-attachment: scroll;
    }
    .hero-section h1:not(.admin-panel h1):not(.login.container h1) {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .hero-section .btn {
        padding: 8px 20px;
        font-size: 1rem;
    }

    /* Kartlar için Mobil Görünüm */
    .card {
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .card-body {
        padding: 1rem;
    }
    .stats-card {
        min-height: auto;
        padding: 1rem;
    }
    .stats-icon {
        width: 48px;
        height: 48px;
    }
    .counter {
        font-size: 2rem;
    }

    /* Admin Paneli Mobil Deneyimi */
    .admin-content {
        padding: 0.5rem;
    }
    .sidebar-hamburger {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
        font-size: 1.5rem;
    }
    .admin-sidebar {
        width: 85vw !important;
    }

    /* Partner Kartları Mobil Optimizasyonu */
    .partner-card-modern {
        padding: 15px 8px;
        min-height: 0;
    }
    .partner-card-modern .partner-logo {
        width: 90px;
        height: 90px;
    }
    .partner-card-modern .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    /* Haber Kartları Mobil Optimizasyonu */
    .news-card {
        padding: 1.2rem 1rem 1rem 1rem;
        min-height: 280px;
    }
    .news-card .news-title {
        font-size: 1.1rem;
    }
    .news-card .news-summary {
        font-size: 0.95rem;
    }
    .news-card .news-meta {
        font-size: 0.85rem;
    }

    /* Takvim Mobil Optimizasyonu */
    .fc .fc-toolbar-title {
        font-size: 1.1rem;
    }
    .fc .fc-button {
        padding: 0.25rem 0.5rem;
        font-size: 0.85rem;
    }
    .fc-daygrid-day {
        min-height: 60px;
    }
    .event-details {
        width: 95%;
        padding: 12px;
    }

    /* Genel Mobil İyileştirmeler */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    h1:not(.admin-panel h1):not(.login.container h1), h2, h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    .section-box {
        padding: 1rem;
    }
}

/* Tablet Optimizasyonları */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        min-height: 300px;
        padding: 60px 0;
    }
    .hero-section h1:not(.admin-panel h1):not(.login.container h1) {
        font-size: 2.2rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    .stats-card {
        margin-bottom: 1rem;
    }
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .partner-card-modern {
        min-width: 240px;
    }
}

/* Küçük Tablet Optimizasyonları */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-section {
        min-height: 400px;
    }
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .partner-card-modern {
        min-width: 280px;
    }
}
                                           
              
.btn-save-settings {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    min-width: 120px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    height: 42px;
}
                                           
/* --- Profile Modern (Admin & Public) --- */
.profile-modern .card {
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.07);
    border: 1.5px solid #e0eafc;
}
.profile-avatar-large {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 18px;
    border: 3px solid #e0eafc;
    margin: 0 auto 10px auto;
    background: #f8f9fa;
    display: block;
}
.profile-modern .role-badge-modern {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 8px;
    background: #1c6071;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 8px;
}
.profile-modern .info-label {
    color: #888;
    font-weight: 500;
}
.profile-modern .info-value {
    font-weight: 500;
}
.profile-modern .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1c6071;
    margin-bottom: 1.2rem;
}
@media (min-width: 992px) {
    .profile-modern .row {
        flex-direction: row !important;
    }
}
@media (max-width: 991px) {
    .profile-modern .row {
        flex-direction: column !important;
    }
    .profile-modern .col-md-4, .profile-modern .col-md-8, .profile-modern .col-lg-4, .profile-modern .col-lg-8, .profile-modern .col-xl-3, .profile-modern .col-xl-9 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .profile-modern .card {
        margin-bottom: 1.2rem !important;
    }
    .profile-modern {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .profile-avatar-large {
        width: 90px;
        height: 90px;
    }
    .profile-modern .card {
        padding: 1rem !important;
    }
    .profile-modern {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
}
                                           
              
.navbar-custom {
    background-color: #1c6071 !important;
}
                                           
/* Navbar font düzeltme */
.navbar, .navbar * {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: 1.08rem !important;
    font-weight: 400;
}
                                           
.container.mt-5 {
    margin-top: 60px !important;
}
                                           
/* Dosya ekleme alanı için modern kutu */
.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #1c6071;
    border-radius: 12px;
    padding: 32px 16px;
    background: #eaf6fa;
    color: #1c6071;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 8px;
    margin-bottom: 8px;
    width: 100%;
    min-height: 120px;
    text-align: center;
}
.file-upload-label:hover, .file-upload-label:focus {
    background: #d1eaff;
    border-color: #174a5a;
}
.file-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.file-upload-label .alert-info {
    background: transparent;
    border: none;
    color: #1c6071;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
}
                                           
.card.event-card {
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    background: rgba(255,255,255,0.97);
    border: 1.5px solid #e0eafc;
    transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
    overflow: hidden;
}
.card.event-card:hover {
    box-shadow: 0 12px 40px rgba(28,96,113,0.18);
    transform: translateY(-4px) scale(1.025);
    border: 1.5px solid #b2d6f6;
}
.card.event-card .card-img-top {
    border-radius: 0;
}
.card.event-card .card-footer.bg-transparent {
    background: transparent;
    border-top: none;
}
                                           
              
/* Partner Card Styles */
.partner-card-modern {
    border-radius: 22px;
    background: #f7f8fa;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    border: 1.5px solid #e0eafc;
    min-height: 260px;
    max-width: 320px;
    min-width: 260px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 12px 20px 12px;
    position: relative;
    transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
    overflow: hidden;
}
.partner-card-modern:hover {
    box-shadow: 0 12px 40px rgba(28,96,113,0.18);
    transform: translateY(-4px) scale(1.025);
    border: 1.5px solid #b2d6f6;
}
.partner-logo-wrapper {
    margin-bottom: 1rem;
}
.partner-logo-modern {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px auto;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(207, 207, 207, 0.10);
    border: 2px solid #bebebe;
    display: block;
}
.partner-name-modern {
    color: #1c6071;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    margin-top: 0.2rem;
    text-align: center;
    word-break: break-word;
}
.partner-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}
.partner-badges .badge {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.35em 0.9em 0.35em 0.9em;
    border-radius: 12px;
    background: #e0eafc;
    color: #205e74;
    border: none;
    box-shadow: none;
    letter-spacing: 0.01em;
}
.partner-badges .badge.bg-success {
    background: #43e97b;
    color: #fff;
}
.partner-badges .badge.bg-info {
    background: #00c6fb;
    color: #fff;
}
.partner-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.7rem;
}
.partner-links .btn {
    border-radius: 0.25rem;
    font-size: 1rem;
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    box-shadow: none;
    border: none;
    background: none;
    color: inherit;
    transition: none;
}
.partner-links .btn i {
    font-size: 1em;
}
.partner-links .btn:hover {
    background: #f8fafc;
    color: inherit;
    transform: none;
    box-shadow: none;
}
@media (max-width: 600px) {
    .partner-card-modern {
        padding: 18px 6px 18px 6px;
        min-height: 0;
    }
    .partner-logo-modern {
        width: 70px;
        height: 70px;
    }
    .partner-name-modern {
        font-size: 1rem;
    }
    .partner-links .btn {
        font-size: 0.97rem;
        padding: 0.45rem 0.5rem;
    }
}

.partner-card-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-logo-admin {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #e0eafc;
}

/* Responsive Partner Styles */
@media (max-width: 768px) {
    .partner-card-modern {
        min-height: 250px;
        padding: 1rem;
    }
    
    .partner-logo-modern {
        width: 60px;
        height: 60px;
    }
    
    .partner-name-modern {
        font-size: 1rem;
    }
    
    .partner-links {
        flex-direction: column;
        align-items: center;
    }
    
    .partner-links .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .partner-card-modern {
        min-height: 220px;
        padding: 0.8rem;
    }
    
    .partner-logo-modern {
        width: 50px;
        height: 50px;
    }
    
    .partner-name-modern {
        font-size: 0.9rem;
    }
    
    .partner-badges {
        gap: 0.3rem;
    }
    
    .partner-badges .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
}
                                           
              
.btn-discord-custom {
    background: #5865F2 !important;
    color: #fff !important;
    border: none !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-size: 1.08rem;
    margin-bottom: 0.3rem;
    transition: background 0.18s, color 0.18s;
    opacity: 1 !important;
}
.btn-discord-custom:hover,
.btn-discord-custom:focus {
    background: #404eed !important;
    color: #fff !important;
    opacity: 1 !important;
}
.btn-truckersmp[disabled], .btn-discord-custom[disabled],
.btn-truckersmp[aria-disabled='true'], .btn-discord-custom[aria-disabled='true'] {
    opacity: 0.5 !important;
    pointer-events: none;
}

/* Partner butonları için modern ve büyük stil */
.partner-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1.2rem;
}
.btn-truckersmp {
    background: #1c1c1c !important;
    color: #fff !important;
    border: none !important;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0.85rem 0.75rem;
    margin: 0.5rem auto 0.1rem auto;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    gap: 0.7em;
}
.btn-truckersmp:hover,
.btn-truckersmp:focus {
    background: #e0e0e0 !important;
    color: #111 !important;
}
.btn-discord-custom {
    background: #5865F2 !important;
    color: #fff !important;
    border: none !important;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0.85rem 0.75rem;
    margin: 0.5rem auto 0.1rem auto;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    gap: 0.7em;
}
.btn-discord-custom:hover,
.btn-discord-custom:focus {
    background: #404eed !important;
    color: #fff !important;
}