* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    color: #e0e0e0;
    min-height: 100vh;
    width: 100vw;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2vh 2vw;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

/* History Toggle Icon */
.history-toggle-icon {
    position: fixed;
    top: 2vh;
    right: 2vw;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #aaa;
    backdrop-filter: blur(10px);
}

.history-toggle-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
    transform: scale(1.05);
}

/* History Sidebar */
.history-sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.history-sidebar.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h3 {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.2rem;
}

.close-sidebar-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #aaa;
}

.close-sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
}

.sidebar-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-content .history-list {
    flex: 1;
    margin-bottom: 20px;
}

.sidebar-content .clear-btn {
    margin-top: auto;
    align-self: flex-start;
}

.sidebar-content .history-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-content .history-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.sidebar-content .history-query {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #fff;
}

.sidebar-content .history-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-content .no-history {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    padding: 2rem 1rem;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Search Section */
.search-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 2vh 20px;
}

.logo-image {
    height: 8vh;
    max-height: 80px;
    width: auto;
    filter: brightness(0.9);
}

.logo-tagline {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    margin-top: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.search-container {
    width: 90vw;
    max-width: 600px;
    margin-top: 5vh;
}

.search-box {
    position: relative;
    margin-bottom: 30px;
}

#searchInput {
    width: 100%;
    padding: 2.5vh clamp(100px, 20vw, 120px) 2.5vh clamp(20px, 4vw, 25px);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #e0e0e0;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#searchInput:focus {
    border-color: #666;
    box-shadow: 0 0 20px rgba(102, 102, 102, 0.3);
}

#searchInput::placeholder {
    color: #888;
}

.search-controls {
    position: absolute;
    right: 1vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5vw;
}

.exact-search-btn, .quote-words-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: clamp(45px, 10vw, 50px);
    height: clamp(35px, 8vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #aaa;
}

.exact-search-btn:hover, .quote-words-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
}

.exact-search-btn.active, .quote-words-btn.active {
    background: white;
    border-color: white;
    color: #333;
}

.exact-icon, .quote-icon {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.quote-icon {
    font-family: monospace;
    font-size: 0.9rem;
}

.search-btn {
    background: #333;
    border: none;
    border-radius: 50%;
    width: clamp(40px, 9vw, 44px);
    height: clamp(40px, 9vw, 44px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.search-btn.enabled {
    background: white;
    color: #333;
}

.search-btn:hover {
    transform: scale(1.05);
    background: #555;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.query-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ccc;
    backdrop-filter: blur(5px);
}

.query-preview.changed {
    border-color: rgba(102, 102, 102, 0.3);
    background: rgba(102, 102, 102, 0.1);
}

.query-preview .preview-label {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.query-preview .preview-text {
    color: #e0e0e0;
    font-weight: 500;
}

.preview-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.preview-actions {
    display: flex;
    align-items: center;
}

.reorder-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.reorder-controls label {
    color: #888;
    font-weight: 500;
}

.reorder-controls select {
    background: #2a2a2a;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reorder-controls select:hover {
    border-color: #666;
}

.reorder-controls select:focus {
    outline: none;
    border-color: #007acc;
    box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.2);
}

.search-options {
    display: flex;
    justify-content: center;
    margin-top: 3vh;
}

.option-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.option-group label {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 500;
}

.option-group select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.option-group select:focus {
    border-color: #666;
}

.option-group select option {
    background: #1a1a1a;
    color: #e0e0e0;
}

/* History Section */
.history-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.history-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header h3 {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin: 0;
}

.toggle-history-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #aaa;
}

.toggle-history-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
}

.toggle-history-btn svg {
    transition: transform 0.3s ease;
}

.toggle-history-btn.expanded svg {
    transform: rotate(180deg);
}

.history-content {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.history-content.collapsed {
    max-height: 0;
    opacity: 0;
}

.history-content.expanded {
    max-height: 2000px;
    opacity: 1;
}

.clear-btn, .download-btn, .back-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.clear-btn {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.clear-btn:hover {
    background: rgba(220, 53, 69, 0.3);
}

.download-btn {
    background: rgba(40, 167, 69, 0.2);
    color: #4caf50;
    border: 1px solid rgba(40, 167, 69, 0.3);
    margin-right: 10px;
}

.download-btn:hover {
    background: rgba(40, 167, 69, 0.3);
}

.back-btn {
    background: white;
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.history-list {
    display: grid;
    gap: 15px;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #666;
    transform: translateY(-2px);
}

.history-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.history-query {
    font-weight: 600;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.history-date {
    color: #888;
    font-size: 0.9rem;
}

.history-details {
    display: flex;
    gap: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

/* Results Section */
.results-section {
    animation: fadeIn 0.5s ease;
    padding: 2vh 2vw;
    min-height: 100vh;
}

/* Results Filter */
.results-filter-container {
    margin-bottom: 20px;
}

.filter-search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

#filterInput {
    width: 100%;
    padding: clamp(0.8rem, 1.5vh, 1rem) clamp(1rem, 2vw, 1.2rem);
    padding-right: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    outline: none;
}

#filterInput:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

#filterInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.filter-controls {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.clear-filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    width: clamp(32px, 6vw, 36px);
    height: clamp(32px, 6vw, 36px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #aaa;
}

.clear-filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
}

.clear-filter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.filter-info {
    text-align: center;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(102, 102, 102, 0.1);
    border: 1px solid rgba(102, 102, 102, 0.2);
    border-radius: 8px;
    color: #aaa;
    font-size: 0.9rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 20px;
    color: #e8e8e8;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.search-info:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.search-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
}

.search-info:not(.collapsed) .search-info-header {
    padding-bottom: 0;
}

.search-info-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    flex: 1;
}

.search-info-toggle {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: none;
}

.search-info-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-info-toggle svg {
    transition: transform 0.3s ease;
}

.search-info.collapsed .search-info-toggle svg {
    transform: rotate(-90deg);
}

.search-info-content {
    padding: 20px 24px 24px 24px;
    transition: all 0.3s ease;
}

.search-info.collapsed .search-info-content {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
}

.search-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 0;
}

.search-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.search-detail:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.search-detail span {
    color: #b0b0b0;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.search-detail strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

/* Loading */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #aaa;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(102, 102, 102, 0.3);
    border-top: 3px solid #666;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Results Container */
.results-container {
    display: grid;
    gap: 25px;
}

.database-result {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.database-result:hover {
    border-color: rgba(102, 102, 102, 0.5);
}

.database-header {
    background: rgba(102, 102, 102, 0.1);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.database-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.database-info {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

.database-content {
    padding: 20px;
}

.data-entries {
    display: grid;
    gap: 20px;
}

.data-entry {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.data-field {
    display: flex;
    margin-bottom: 8px;
    word-break: break-word;
}

.field-name {
    font-weight: 600;
    color: #aaa;
    min-width: 120px;
    margin-right: 15px;
}

.field-value {
    color: #e0e0e0;
    flex: 1;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.no-results h3 {
    margin-bottom: 10px;
    color: #aaa;
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 20px;
    color: #ff6b7a;
    text-align: center;
    margin-bottom: 20px;
}

/* Header styles */
.header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logout-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-btn:hover {
    background: #c0392b;
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.logout-btn:active {
    transform: translateY(-50%) translateY(0);
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logout-btn {
        position: static;
        transform: none;
        align-self: flex-end;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 2vh 20px;
    }
    
    .logo-image {
        height: 6vh;
        max-height: 60px;
    }
    
    .logo-tagline {
        font-size: 14px;
        margin-top: 2px;
        letter-spacing: 1.5px;
    }
    
    .search-container {
        width: calc(100vw - 40px);
        max-width: 600px;
    }
    
    #searchInput {
        padding: 2vh clamp(105px, 22vw, 115px) 2vh clamp(18px, 4vw, 22px);
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .search-options {
        margin-top: 2vh;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .result-actions {
        display: flex;
        gap: 10px;
    }
    
    .search-info {
        margin-bottom: 16px;
    }
    
    .search-info-header {
        padding: 20px;
    }
    
    .search-info:not(.collapsed) .search-info-header {
        padding-bottom: 0;
    }
    
    .search-info-title {
        font-size: 1.1rem;
    }
    
    .search-info-toggle {
        display: block;
    }
    
    .search-info-content {
        padding: 16px 20px 20px 20px;
    }
    
    .search-info.collapsed .search-info-content {
        padding: 0 20px;
    }
    
    .search-details {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .search-detail {
        padding: 14px;
    }
    
    .search-detail span {
        font-size: 0.8rem;
    }
    
    .search-detail strong {
        font-size: 0.95rem;
    }
    
    .data-field {
        flex-direction: column;
    }
    
    .field-name {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5vh 16px;
    }
    
    .logo-image {
        height: 5vh;
        max-height: 50px;
    }
    
    .logo-tagline {
        font-size: 12px;
        margin-top: 1px;
        letter-spacing: 1px;
    }
    
    .search-container {
        width: calc(100vw - 32px);
        max-width: 600px;
    }
    
    #searchInput {
        padding: 1.8vh clamp(110px, 25vw, 120px) 1.8vh clamp(16px, 4vw, 20px);
        font-size: clamp(0.8rem, 3.5vw, 1rem);
    }
    
    #searchInput::placeholder {
        font-size: clamp(0.7rem, 3vw, 0.9rem);
    }
    
    .search-controls {
        right: 1.5vw;
        gap: 1vw;
    }
    
    .search-btn {
        width: clamp(32px, 8vw, 36px);
        height: clamp(32px, 8vw, 36px);
    }
    
    .exact-search-btn {
        width: clamp(38px, 9vw, 42px);
        height: clamp(28px, 7vw, 32px);
    }
    
    .exact-icon {
        font-size: clamp(0.5rem, 1.5vw, 0.6rem);
    }
    
    .search-options {
        margin-top: 1.5vh;
    }
    
    .search-info {
        margin-bottom: 14px;
        border-radius: 14px;
    }
    
    .search-info-header {
        padding: 16px;
    }
    
    .search-info:not(.collapsed) .search-info-header {
        padding-bottom: 0;
    }
    
    .search-info-title {
        font-size: 1rem;
    }
    
    .search-info-content {
        padding: 14px 16px 16px 16px;
    }
    
    .search-info.collapsed .search-info-content {
        padding: 0 16px;
    }
    
    .search-details {
        gap: 12px;
    }
    
    .search-detail {
        padding: 12px;
        border-radius: 10px;
    }
    
    .search-detail span {
        font-size: 0.75rem;
    }
    
    .search-detail strong {
        font-size: 0.9rem;
    }
}