.abihesap-swal2-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9998;
    transition: opacity 0.3s ease;
}

.abihesap-swal2-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.abihesap-swal2-popup-content {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform-origin: center;
    max-width: 500px;
    width: 90%;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    transform: translateY(0);
    animation: popupIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes popupOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
}

.abihesap-swal2-popup-icon {
    transform: scale(1);
    transition: transform 0.2s ease;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.abihesap-swal2-popup-icon:hover {
    transform: scale(1.1);
}

.abihesap-swal2-popup-success-icon,
.abihesap-swal2-popup-error-icon,
.abihesap-swal2-popup-info-icon {
    display: none;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.abihesap-swal2-popup-message {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 1rem 0;
    font-weight: 500;
    line-height: 1.5;
    max-width: 100%;
    word-wrap: break-word;
}

.abihesap-swal2-popup-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.abihesap-swal2-popup-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.abihesap-swal2-popup-close-button {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s ease;
    font-size: 1.25rem;
    line-height: 1;
}

.abihesap-swal2-popup-close-button:hover {
    color: #111827;
}

.abihesap-swal2-popup-body {
    padding: 1.5rem;
    width: 100%;
}

.abihesap-swal2-popup-purchase-message {
    margin-bottom: 1.5rem;
    color: #374151;
}

.abihesap-swal2-popup-purchase-input {
    margin-top: 1rem;
}

.abihesap-swal2-popup-amount-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 240px;
    margin: 0 auto;
}

.abihesap-swal2-popup-amount-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #374151;
}

.abihesap-swal2-popup-amount-btn:hover {
    background: #e5e7eb;
    color: #111827;
}

.abihesap-swal2-popup-amount-btn:active {
    transform: scale(0.95);
}

.abihesap-swal2-popup-input {
    width: 100px;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    color: #111827;
    font-weight: 500;
}

.abihesap-swal2-popup-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.abihesap-swal2-popup-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.abihesap-swal2-popup-btn-secondary {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.abihesap-swal2-popup-btn-secondary:hover {
    background: #e5e7eb;
    color: #111827;
}

.abihesap-swal2-popup-btn-primary,
.abihesap-swal2-popup-confirm-button {
    background: #3b82f6;
    border: 1px solid #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 120px;
}

.abihesap-swal2-popup-btn-primary:hover,
.abihesap-swal2-popup-confirm-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.abihesap-swal2-popup-btn-primary:active,
.abihesap-swal2-popup-confirm-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.abihesap-swal2-popup.success .abihesap-swal2-popup-success-icon {
    display: block;
    color: #10b981;
    animation: iconPulse 1s ease;
}

.abihesap-swal2-popup.error .abihesap-swal2-popup-error-icon {
    display: block;
    color: #ef4444;
    animation: iconShake 0.5s ease;
}

.abihesap-swal2-popup.info .abihesap-swal2-popup-info-icon {
    display: block;
    color: #3b82f6;
    animation: iconBounce 0.5s ease;
}

/* Mobil Uyumluluk */
@media (max-width: 640px) {
    .abihesap-swal2-popup-content {
        min-width: 100%;
        margin: 1rem;
    }

    .abihesap-swal2-popup-header {
        padding: 1rem;
    }

    .abihesap-swal2-popup-body {
        padding: 1rem;
    }

    .abihesap-swal2-popup-footer {
        padding: 1rem;
        flex-direction: column;
    }

    .abihesap-swal2-popup-btn-primary,
    .abihesap-swal2-popup-btn-secondary,
    .abihesap-swal2-popup-confirm-button {
        width: 100%;
    }

    .abihesap-swal2-popup-amount-controls {
        max-width: 100%;
    }
}

.abihesap-swal2-popup .popup-content {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform-origin: center;
    max-width: 500px;
    width: 90%;
}

.abihesap-swal2-popup .popup-icon {
    transform: scale(1);
    transition: transform 0.2s ease;
}

.abihesap-swal2-popup .popup-icon:hover {
    transform: scale(1.1);
}

.abihesap-swal2-popup .popup-message {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 1rem 0;
}

.abihesap-swal2-popup .confirm-button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 120px;
}

.abihesap-swal2-popup .confirm-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.abihesap-swal2-popup .confirm-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.abihesap-swal2-popup.success .success-icon {
    color: #10b981;
    animation: iconPulse 1s ease;
}

.abihesap-swal2-popup.error .error-icon {
    color: #ef4444;
    animation: iconShake 0.5s ease;
}

.abihesap-swal2-popup.info .info-icon {
    color: #3b82f6;
    animation: iconBounce 0.5s ease;
}

@keyframes iconPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes iconShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes iconBounce {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }

    50% {
        transform: translateY(5px);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    padding: 50px 0 30px;
}

#footer .container {
    max-width: 1200px;
}

#footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

#footer h3 {
    color: #3498db;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

#footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background-color: #3498db;
}

#footer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #bbb;
}

#footer .footer-links a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

#footer .footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

#footer .contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#footer .contact-info i {
    color: #3498db;
    margin-right: 10px;
    font-size: 18px;
}

#footer .social-links {
    margin-top: 20px;
}

#footer .social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #f0f0f0;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

#footer .social-links a:hover {
    background-color: #3498db;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    font-size: 13px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #3498db;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.back-to-top:hover {
    background: #2980b9;
    opacity: 1;
}

/* Tooltip özel teması */
.tippy-box[data-theme~='custom'] {
    background-color: #2d3436;
    color: white;
    font-weight: 500;
    border-radius: 8px;
    font-size: 0.9em;
}

.tippy-box[data-theme~='custom'][data-placement^='top']>.tippy-arrow::before {
    border-top-color: #2d3436;
}

@media (max-width: 991px) {
    .btn-block-sm {
        width: 100%;
        background-color: #007BFF;
    }

    .btn-block-sm:last-child {
        margin-top: 10px;
    }

    .nav-menu i {
        margin-right: 15px !important;
        width: 20px;
        text-align: center;
    }

    .mobile-nav a i {
        margin-right: 20px !important;
        width: 24px;
        text-align: center;
    }

    .mobile-nav .wallet-balance {
        background: transparent !important;
        color: #01036f !important;
        font-weight: bold;
    }

    .mobile-nav .wallet-balance i {
        color: #01036f !important;
    }

    .mobile-notification {
        order: -1;
        margin-right: auto;
    }

    .mobile-notification .notification-btn {
        color: #fff;
        text-decoration: none;
        padding: 8px 15px !important;
        display: flex;
        align-items: center;
    }

    .mobile-notification .notification-btn span {
        font-size: 14px;
        font-weight: 500;
    }

    .logout-btn {
        color: #fff;
        text-decoration: none;
    }

    .logout-btn span {
        font-weight: 500;
    }

    .notification-badge {
        position: absolute;
        top: 0;
        right: 5px;
    }
}

#header {
    transition: all 0.3s;
    background: transparent;
}

#header.header-scrolled {
    background: linear-gradient(135deg, #0f2b76 0%, #5b21b6 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.wallet-balance {
    padding: 8px 15px;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu i {
    margin-right: 10px;
}

.nav-menu .drop-down ul i {
    margin-right: 10px;
}

.nav-menu .drop-down ul {
    padding: 10px 0;
}

.nav-menu .drop-down ul li {
    min-width: 200px;
}

.nav-menu .drop-down ul a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #01036f;
    transition: 0.3s;
    background: #fff;
    display: flex;
    align-items: center;
}

.nav-menu .drop-down ul a:hover {
    background: #f8f9fa;
    color: #5b21b6;
}

.notifications-dropdown {
    position: relative;
}

.notification-btn {
    position: relative;
    padding: 8px 15px !important;
    color: #fff;
    transition: all 0.2s ease;
}

.notification-btn:hover {
    opacity: 0.9;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: 5px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(239, 68, 68, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    }
}

.notifications-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    width: 380px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-top: 15px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: calc(100vh - 200px);
}

.notifications-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.notifications-body {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    position: relative;
    z-index: 10000;
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px 16px 0 0;
}

.notifications-header h6 {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.view-all-link {
    font-size: 0.85rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.view-all-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.view-all-link:hover {
    color: #2563eb;
    background: rgba(59, 130, 246, 0.1);
}

.view-all-link:hover i {
    transform: translateX(3px);
}

.notification-item {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    position: relative;
    text-decoration: none;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: #f8fafc;
    transform: translateX(4px);
}

.notification-item.unread {
    background: #f0f9ff;
}

.notification-item.unread:hover {
    background: #e0f2fe;
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3b82f6, #2563eb);
    border-radius: 0 4px 4px 0;
}

.notification-title {
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.5;
    font-weight: 500;
}

.notification-item.unread .notification-title {
    font-weight: 600;
    color: #1e293b;
}

.notification-time {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.notification-time i {
    font-size: 0.9rem;
    color: #94a3b8;
}

.no-notifications {
    padding: 32px 24px;
    text-align: center;
    color: #64748b;
}

.no-notifications i {
    font-size: 2.5rem;
    color: #94a3b8;
    margin-bottom: 16px;
    display: block;
    opacity: 0.8;
}

.no-notifications p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Mobil Bildirim Stilleri */
.mobile-notification {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.mobile-notification .notification-btn {
    padding: 8px !important;
}

@media (max-width: 991px) {
    .mobile-notification {
        order: -1;
        margin-right: auto;
    }

    .mobile-notification .notification-btn {
        color: #fff;
    }

    .notification-popup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 9999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 15px;
    }

    .notification-popup.active {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }

    .notification-popup-content {
        position: relative;
        width: 100%;
        max-width: 380px;
        background: white;
        border-radius: 20px;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: scale(0.95);
        transition: all 0.3s ease;
        margin: 0 auto;
        z-index: 10000;
    }

    .notification-popup.active .notification-popup-content {
        opacity: 1;
        transform: scale(1);
    }

    .notification-popup .notifications-header {
        position: sticky;
        top: 0;
        background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        z-index: 1;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e5e7eb;
        border-radius: 20px 20px 0 0;
    }

    .notification-popup .notifications-header h6 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e293b;
    }

    .notification-popup .notifications-header .view-all-link {
        font-size: 0.9rem;
        color: #3b82f6;
        text-decoration: none;
        font-weight: 500;
        padding: 6px 12px;
        border-radius: 6px;
        transition: all 0.2s ease;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 4px;
        background: rgba(59, 130, 246, 0.1);
    }

    .notification-popup .notifications-header .view-all-link:hover {
        background: rgba(59, 130, 246, 0.15);
        color: #2563eb;
    }

    .notification-popup .notifications-header .view-all-link i {
        font-size: 0.8rem;
        transition: transform 0.2s ease;
    }

    .notification-popup .notifications-header .view-all-link:hover i {
        transform: translateX(3px);
    }

    .notification-popup .notification-item {
        padding: 16px 20px;
    }

    .notification-popup .notifications-body {
        max-height: calc(85vh - 80px);
        padding: 8px 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .close-popup {
        padding: 8px;
        color: #64748b;
        transition: all 0.2s ease;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(100, 116, 139, 0.1);
        border: none;
        outline: none;
        margin-left: 12px;
    }

    .close-popup:hover {
        color: #1e293b;
        background: rgba(100, 116, 139, 0.2);
    }

    .close-popup:active {
        transform: scale(0.95);
    }

    .close-popup i {
        font-size: 1rem;
    }

    .notification-popup .no-notifications {
        padding: 40px 20px;
        text-align: center;
        color: #64748b;
    }
}

/* Dropdown menü marker'larını kaldır */
.nav-menu ul,
.nav-menu li,
.nav-menu .drop-down ul,
.nav-menu .drop-down li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.nav-menu .drop-down ul::marker,
.nav-menu .drop-down li::marker {
    display: none !important;
    content: none !important;
}

/* SVG Düzeltmeleri */
.pagination svg {
    width: 16px !important;
    height: 16px !important;
    vertical-align: middle;
}

.page-item .page-link svg {
    width: 16px !important;
    height: 16px !important;
    stroke-width: 2;
    vertical-align: middle;
}

/* Pagination SVG'leri için özel stiller */
nav[aria-label="Pagination Navigation"] svg {
    width: 16px !important;
    height: 16px !important;
    vertical-align: middle;
}

/* Mobil için SVG boyutları */
@media (max-width: 768px) {

    .pagination svg,
    .page-item .page-link svg,
    nav[aria-label="Pagination Navigation"] svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* Kullanım Rehberi için özel stil */
.guide-icon {
    color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.1) !important;
}

a:hover .guide-icon {
    background: #3b82f6 !important;
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    transform: scale(1.1) rotate(-5deg) !important;
}

/* Logo stilleri */
.logo-img {
    padding: 0 !important;
}

/* Mobil ve tablet tüm ekranlar için logo padding */
@media (max-width: 992px) {
    .logo-img {
        padding: 3px !important;
    }
}

.notifications-menu,
.notifications-dropdown {
    pointer-events: auto !important;
}

/* Bildirim menüsü için özel hover stilleri */
.notifications-menu .view-all-link:hover,
.notifications-menu .notification-item:hover .notification-title,
.notifications-menu .notification-item:hover .notification-time,
.notification-popup .view-all-link:hover {
    color: #2563eb !important;
}

.notifications-menu .notification-item:hover {
    background: #f8fafc !important;
    color: inherit !important;
}

.notifications-menu .view-all-link:hover,
.notification-popup .view-all-link:hover {
    background: rgba(59, 130, 246, 0.1) !important;
}

/* Üst menüdeki hover durumunu korumak için */
header .nav-menu>ul>li>a:hover {
    color: #fff !important;
}

.marquee {
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    height: 41px;
    padding: 40px;
    background: #f04351;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.marquee .text {
    display: inline-block;
    padding-left: 125rem;
    text-indent: 0;
    animation: marquee 30s linear infinite;
    font-weight: 500;
    font-size: 2rem;
    line-height: 125%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #f2f2f2;
}

@media (max-width: 420px) {
    .marquee .text {
        display: inline-block;
        padding-left: 25rem;
        text-indent: 0;
        animation: marquee 30s linear infinite;
        font-weight: 500;
        font-size: 2.4rem;
        line-height: 125%;
        letter-spacing: -0.04em;
        text-transform: uppercase;
        color: #f2f2f2;
    }
}

@media (max-width: 420px) {
    .badgex {
        display: block;
    }
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}



.clients {
    padding: 0;
}

.section-bg {
    background: linear-gradient(180deg, #f2f6fa 0%, #fff 100%);
}

.marquee-text-span {
    color: rgb(51, 51, 51);
    font-family: "Segoe UI Emoji";
    font-size: 38px;
    background-color: transparent;
}

.fw-bolder {
    font-weight: bolder;
}

:root {
    --primary-color: #4a90e2;
    --primary-hover: #357abd;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 0.375rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: var(--gray-800);
    background-color: var(--gray-100);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.col {
    flex: 1;
    padding: 0.5rem;
}

.col-12 {
    width: 100%;
}

.col-6 {
    width: 50%;
}

.col-4 {
    width: 33.333333%;
}

.col-3 {
    width: 25%;
}

@media (max-width: 768px) {

    .col-6,
    .col-4,
    .col-3 {
        width: 100%;
    }
}

/* Card Styles */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-body {
    padding: 1rem;
}

.card-footer {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-700);
    background-color: white;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.25);
}

/* Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.table th,
.table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    text-align: left;
}

.table th {
    font-weight: 600;
    background-color: var(--gray-100);
}

.table tbody tr:hover {
    background-color: var(--gray-100);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.badge-success {
    background-color: #d4edda;
    color: #155724;
}

.badge-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Utility Classes */
.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.text-primary {
    color: var(--primary-color);
}

.text-success {
    color: var(--success-color);
}

.text-danger {
    color: var(--danger-color);
}

.text-muted {
    color: var(--gray-600);
}

/* Image Styles */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
}

/* Alert Styles */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* SVG Icon Size Fix */
svg.w-5,
svg.h-5 {
    width: 1rem !important;
    height: 1rem !important;
}

/* Fix for SVG icons inside pagination */
.relative.inline-flex svg.w-5,
.relative.inline-flex svg.h-5 {
    width: 1rem !important;
    height: 1rem !important;
}

/* Icon Styles */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: text-bottom;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 1.5rem;
    height: 1.5rem;
}

.user-rank {
    display: inline-flex;
    align-items: center;
    font-size: 1.2em;
    cursor: help;
    transition: transform 0.2s ease;
}

.user-rank:hover {
    transform: scale(1.2);
}

.rank-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.rank-icon:hover .rank-icon-img {
    transform: scale(1.2);
}

.rank-level .rank-icon-img {
    width: 20px;
    height: 20px;
}

.rank-icon-large .rank-icon-img {
    width: 40px;
    height: 40px;
}

.admin-badge {
    color: #FFD700;
    margin-left: 5px;
    font-size: 1.2em;
    cursor: help;
    transition: all 0.2s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.admin-badge:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    color: #FFC000;
}

.user-stats {
    display: inline-flex;
    align-items: center;
    font-size: 0.9em;
    color: #666;
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.user-stats:hover {
    background-color: #e9ecef;
}

.user-stats i {
    margin-right: 4px;
    color: #4a90e2;
}

.purchase-count {
    font-weight: 500;
    color: #495057;
}

.user-link {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.user-link:hover {
    color: #dc3545;
    text-decoration: underline;
}