@font-face{
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url("/assets/fonts/OpenSans-Regular-webfont-c747571a.ttf") format('ttf'),
       url("/assets/fonts/OpenSans-Regular-webfont-4a4a95a9.woff") format('woff'),
       url("/assets/fonts/OpenSans-Regular-webfont-88911387.woff2") format('woff2');
}

@font-face{
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url("/assets/fonts/OpenSans-Bold-webfont-e902890a.ttf") format('ttf'),
       url("/assets/fonts/OpenSans-Bold-webfont-af027f21.woff") format('woff'),
       url("/assets/fonts/OpenSans-Bold-webfont-2bd731ea.woff2") format('woff2');
}

body {
    font-family: 'Open Sans', sans-serif;
}

.feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  font-size: 1.5rem;
}

.fingerprints-container {
  border: 1px solid #ccc;
  padding: 1em;
}

.cookies-bar {
    position: sticky;
    font-size: 13px;
    width: 100%;
    bottom: 0;

    display: flex;
    justify-content: flex-end;

    .btn {
        font-size: 13px;
    }
}

/* Improved pagination styling */
.pagination-wrapper {
    margin: 1rem 0;
}

.pagination-wrapper .pagination {
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.pagination-wrapper .page-link {
    border: none;
    margin: 0;
    padding: 0.5rem 0.75rem;
    color: #6c757d;
    transition: all 0.2s ease;
}

.pagination-wrapper .page-link:hover {
    background-color: #f8f9fa;
    color: #495057;
    transform: translateY(-1px);
}

.pagination-wrapper .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    font-weight: 600;
}

.pagination-wrapper .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #fff;
}

/* Mobile-responsive pagination */
@media (max-width: 576px) {
    .pagination-wrapper .page-link {
        padding: 0.375rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .pagination-wrapper .pagination {
        font-size: 0.875rem;
    }
}

/* Mobile card styling */
@media (max-width: 767px) {
    .card {
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        font-weight: 600;
    }
}

/* Dropdown visibility fixes */
.dropdown-menu {
    z-index: 1050;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.table-responsive {
    overflow: visible !important;
}

.card {
    overflow: visible;
}

.container {
    overflow: visible;
}

.cookies-bar-content {
    max-width: 512px;
    padding: 16px;
    margin-right: 16px;
    margin-bottom: 16px;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.hover-lift {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* Fix cursor for clickable elements in used_by section */
a img {
    cursor: pointer;
}

/* Disable text selection in used_by section */
#usedByCarousel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Real-time clicks map animations */
@keyframes clickPulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.click-dot {
    width: 4px;
    height: 4px;
    background-color: #FD4382;
    transform: translate(-50%, -50%);
    animation: clickPulse 2.5s ease-out;
    z-index: 1000;
    pointer-events: none;
}

@media (max-width: 576px) {
    .click-dot {
        width: 3px;
        height: 3px;
    }
    
    @keyframes clickPulse {
        0% {
            transform: scale(0);
            opacity: 1;
        }
        50% {
            transform: scale(1.0);
            opacity: 0.8;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }
}

.live-activity-icon {
    animation: livePulse 2s ease-in-out infinite;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

.bg-dark-navy {
    background: #1a1a2e !important;
}

.transition-divider {
    background: linear-gradient(to bottom, #1a1a2e 0%, #1a1a2e 50%, #212529 50%, #212529 100%);
}

.world-map-container {
    height: 400px;
}

@media (min-width: 600px) {
    .world-map-container {
        height: 600px;
    }
}

/* Disable hover effects on map regions */
#world-map .jvm-region {
    pointer-events: none !important;
}

#world-map svg path {
    pointer-events: none !important;
}
