/* =========================================
   DICTIONARY STUDIO - FULL THEME CSS
   ========================================= */

/* 1. Global Footer Suppression */
footer,
.footer,
.footer-bottom,
.copyright,
.footer-links,
.footer-legal,
#footer {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    visibility: hidden !important;
}

/* 2. Page Layout */
.dictionary-wrapper {
    background: #020617;
    padding: 60px 0;
    min-height: auto;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.dictionary-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 30px;
    text-align: center;
}

.highlight-text {
    color: #ff3366;
}

/* 3. Search Bar & Glow Effects */
.search-bar-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.search-input-wrapper {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Glow Blue for English */
.search-input-wrapper.glow-eng {
    border-color: #00ADEF;
    box-shadow: 0 0 15px rgba(0, 173, 239, 0.2);
}

/* Glow Pink for Assamese */
.search-input-wrapper.glow-asm {
    border-color: #ff3366;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.2);
}

#searchInput {
    width: 100%;
    height: 60px;
    background: transparent;
    border: none;
    padding: 0 25px 0 60px;
    font-size: 18px;
    color: #fff;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 20px;
    transition: 0.3s color;
}

/* 4. History Tags */
.history-container {
    max-width: 800px;
    margin: 15px auto 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.history-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    cursor: pointer;
    transition: 0.2s;
}

.history-tag:hover {
    border-color: #ff3366;
    color: #fff;
}

/* 5. Suggestions Dropdown */
#suggestions {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.list-group-item {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    text-align: left;
    display: block;
}

.list-group-item:hover {
    background: rgba(255, 51, 102, 0.1);
    color: #fff;
}

/* 6. Result Card Area */
.dict-result-card {
    margin: 40px auto 0;
    background: rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    display: none;
}

#dispWord {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
}

#dispPhonetic {
    color: #00ADEF;
    font-size: 16px;
    margin-top: 5px;
}

.result-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 25px 0;
}

/* Content Modules */
.translation-box {
    background: linear-gradient(90deg, rgba(0, 173, 239, 0.1) 0%, transparent 100%);
    border-left: 4px solid #00ADEF;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trans-label {
    font-size: 9px;
    text-transform: uppercase;
    color: #00ADEF;
    letter-spacing: 1.5px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.trans-text {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.def-label {
    font-size: 9px;
    text-transform: uppercase;
    color: #ff3366;
    letter-spacing: 1.5px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.def-text {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Badges */
.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
}

.badge-primary {
    background: rgba(0, 173, 239, 0.1);
    color: #00ADEF;
    border: 1px solid rgba(0, 173, 239, 0.2);
}

.badge-success {
    background: rgba(255, 51, 102, 0.1);
    color: #ff3366;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.badge-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
}

/* Icon Buttons */
.icon-btn {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
}

.icon-btn:hover {
    color: #ff3366;
}