/*
 * Armory layout/tabs CSS
 *
 * Phase 2A :
 * - le CSS global des onglets est maintenant centralisé ici ;
 * - l'ancien CSS inline dans index.php est encore conservé volontairement ;
 * - le rendu doit donc rester identique ;
 * - prochaine étape : supprimer les blocs Layout inline de index.php après validation.
 */

/* ============================================================
   LAYOUT / TABS
   ============================================================ */

.armory-tabs {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 18px 0 0;
    padding: 0 16px;
    min-height: 56px;
    background: linear-gradient(180deg, rgba(28, 68, 124, 0.55), rgba(16, 45, 90, 0.62));
    border-top: 1px solid rgba(120, 170, 230, 0.18);
    border-bottom: 1px solid rgba(150, 190, 235, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.armory-tab-button,
.armory-search-return {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 56px;
    padding: 0 18px;
    color: #ffd21a;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
    transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.armory-tab-button i,
.armory-search-return i {
    color: inherit;
    font-size: 15px;
}

.armory-tab-button:hover,
.armory-search-return:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.armory-tab-button.armory-tab-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: #ffffff;
}

.armory-search-return {
    margin-left: auto;
}

.armory-tab-panel {
    display: none;
}

.armory-tab-panel.armory-tab-panel-active {
    display: block;
}

/* ============================================================
   END LAYOUT / TABS
   ============================================================ */
