/* Custom CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #435ebe;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Highlight Keyword */
.highlight-keyword {
    color: #FF0004;
    font-weight: bold;
    background-color: #FFF3CD;
    padding: 1px 3px;
    border-radius: 3px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .navbar, .sidebar, .main-navbar, .header-top, 
    .no-print, .burger-btn, .breadcrumb, .pagination,
    footer {
        display: none !important;
    }
    
    .content-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .result-card .meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-table td:first-child {
        width: 120px;
    }
}