html * {
    font-family: 'Open Sans', sans-serif;
}
body {
    background-color: #f5f5f9;
}

body .card {
    margin: 10px;
    padding: 15px;
    border-radius: 12px;
    border: 0 solid #d9dee3;
    background-color: #ffffff;
    box-shadow: 0 2px 6px 0 rgba(67,89,113,.12);
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #697a8d;
    --bs-table-striped-bg: #f9fafb;
    --bs-table-active-color: #697a8d;
    --bs-table-active-bg: rgba(67, 89, 113, 0.1);
    --bs-table-hover-color: #697a8d;
    --bs-table-hover-bg: rgba(67, 89, 113, 0.06);
    width: 100%;
    margin-bottom: 1rem;
    color: #697a8d;
    vertical-align: middle;
    border-color: #d9dee3;
}

.table>thead {
    vertical-align: bottom;
}
.table>tbody {
    vertical-align: inherit;
}
.table>:not(caption)>*>* {
    padding: .625rem 1.25rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>:not(:first-child) {
    border-top: 2px solid #d9dee3;
}

thead, tbody, tfoot, tr, td, th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.text-nowrap {
    white-space: nowrap !important;
}

.priority {
    color: white;
    background-color: #697a8d;
    padding: 0 0.3rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8em;
}

.builds-icon {
    float: right;
    color: white;
    background-color: #697a8d;
    padding: 0 0.3rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8em;
}

div.builds {
    height: 0; /* L'élément est caché */
    overflow: hidden; /* Le contenu est masqué */
    transition: 0.8s ease-in-out; /* La transition dure 0.3s et utilise une fonction d'accélération/décélération */
}

div.builds span {
    line-height: 1.8em;
}

div.builds.visible {
    height: fit-content;
    transition: 0.8s ease-in-out; /* La transition dure 0.3s et utilise une fonction d'accélération/décélération */
}

.bold {
    font-weight: 400;
}

.copy-icon {
    margin-left: 10px;
    font-size: 1.3rem;
}

td {
    vertical-align: top;
}

.tooltip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background: black;
    color: white;
    opacity: 0.8;
    transition: opacity 0.5s;
    border-radius: 6px;
}

.talents-icons img {
    height: 35px;
}

.infobulle {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    margin-top: -35px;
}
  