/* Share24 - Share plain text contents for 24 hours */
/* Copyright (C) 2025  Alessio Vanni */

/* This program is free software: you can redistribute it and/or modify */
/* it under the terms of the GNU Affero General Public License as published by */
/* the Free Software Foundation, either version 3 of the License, or */
/* (at your option) any later version. */

/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the */
/* GNU Affero General Public License for more details. */

/* You should have received a copy of the GNU Affero General Public License */
/* along with this program.  If not, see <https://www.gnu.org/licenses/>. */

x-tabbed {
    display: block;
}

x-tabbed > x-tabbed-head {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

x-tabbed > x-tabbed-head > x-tab {
    padding: 0.25em 0.5em;
}

x-tabbed > x-tabbed-head > x-tab.selected {
    font-weight: bold;
}

x-tabbed > x-tabbed-head > x-tab:hover, x-tabbed > x-tabbed-head > x-tab:hover * {
    cursor: pointer;
}

x-tabbed > x-tabbed-body {
    display: block;
}

x-tabbed > x-tabbed-body > x-tab {
    display: none;
}

x-tabbed > x-tabbed-body > x-tab.selected {
    display: block;
}
