.container {
    height: calc(100% - var(--nav-height));
    padding-top: 5%;
}

.columns-container,
.subtext-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1%;
}

.columns-container .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    margin-top: -20px;
}

.columns-container-dashboard .column-dashboard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    margin-top: -20px;
}

.table-container {
    padding-top: 4%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
}

.table {
    margin: 0 auto;
    width: 70%;
    height: 350px;
    font-size: 2rem;
    font-weight: 500;
    border-spacing: 0;
    border-collapse: collapse;
    background-color: white;
}

th,
td {
    padding: 1rem 1rem 1rem 8.5rem;
    text-align: left;
    border: none;
}

th {
    background-color: var(--primary-color);
    color: white;
}

td {
    border-bottom: 1px solid var(--background-color);
    width: 33.33%;
}

.space {
    padding-top: 6%;
}

.text,
.goodbye-text {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-color);
    text-align: center;
    margin-top: 20%;
}

.text {
    height: 15vh;
    margin-top: 0;
    padding-top: 0;
}

.goodbye-text {
    height: 10vh;
}

.title-container,
.button-container,
.number-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    padding-top: 0;
}

.number-container {
    padding-top: 0%;
}

.number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 350px;
    height: 350px;
    border: 8px solid var(--primary-color);
    border-radius: 50%;
    font-size: 12rem;
    font-weight: 500;
    color: var(--primary-color);
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5%;
    padding-top: 3rem;
}

.button,
.cross-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 250px;
    cursor: pointer;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.button {
    background-color: var(--button-color);
}

.cross-button {
    background-color: var(--nav-background-color);
    border: 1px solid black;
}

.button img {

    height: 146px;
}

.cross-button img {

    height: 110px;
}

.cross-button svg {
    fill: var(--primary-color);
    width: 150px;
    height: 150px;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.button-wrapper.non-selectable {
    position: relative;
}

.button-text {
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-color);
    padding-top: 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 4rem;
}

.button-text span {
    display: block;
    line-height: 1.2;
}

.columns-container span,
.table-container span,
.highlight,
.subtext-highlight {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 500;
}

.title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.number-text {
    margin-top: 20px;
    color: var(--primary-color);
    text-align: center;
}

.ps-logo {
    width: 20px;
}

.selectable.selected .button,
.selectable.selected .cross-button {
    border: 4px solid var(--primary-color);
}

.icon-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    width: 400px;
    height: 116px;
    cursor: pointer;
    box-shadow: var(--button-shadow);
    margin-top: 8%;
}

.icon-button:disabled {
    background-color: var(--button-primary-desactivated);
    opacity: 0.5;
    cursor: not-allowed;
}

.table span {
    font-size: 2rem;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 10rem;
}

.content-container .text {
    max-width: 100rem; 
    width: 100%;
    font-size: 4rem; 
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-color);
    text-align: center;
    margin-top: 0;
    padding-top: 0;
}
 .loading {
    width: 10rem;
    margin-top: 6rem;
}