:root {
    --primary-color: #00d5d1;
    --text-color: #333;
    --border-color: #2c2a2a;
    --subtext-color: #444;
    --background-light: #f4f2f2;
    --table-background-color: #fff;
    --shadow-color: rgba(0, 0, 0, 0.06);
    --card-radius: 12px;
    --font-size-base: 16px;
    --font-size-large: 24px;
    --font-size-medium: 18px;
}

.secton-table {
    padding: 20px;
    background-color: var(--background-light)
}

.secton-table h2 {
    text-align: center;
    padding: 10px;
}

.custom-rounded-table {
    background-color: var(--table-background-color);
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}





.custom-rounded-table th,
.custom-rounded-table td {
    text-align: left;
    border: 1px solid var(--border-color);
    padding: 4px;
    vertical-align: middle;
}

.custom-rounded-table th {
    min-height: 50px;
}

.custom-rounded-table td {
    min-height: 80px;
}


.custom-rounded-table th:nth-child(1),
.custom-rounded-table td:nth-child(1) {
    width: 15%;
    /* border-left: none; */

}

.custom-rounded-table th:nth-child(2),
.custom-rounded-table th:nth-child(3),
.custom-rounded-table th:nth-child(4),
.custom-rounded-table td:nth-child(2),
.custom-rounded-table td:nth-child(3),
.custom-rounded-table td:nth-child(4) {
    width: 26.66%;
}



.custom-rounded-table td div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.custom-rounded-table td div>div:first-child {
    width: 80%;
    padding: 5px;
}

.custom-rounded-table td div>div:last-child {
    width: 20%;
    padding: 5px;
    display: flex;
    flex-direction: column;

}

.custom-rounded-table button {
    width: 40px;
    height: 40px;
    background-size: cover;
    /* Ensure the image covers the button */
    border: none;
    cursor: pointer;
    outline: none;
    margin: 5px;
    background-color: var(--table-background-color);
    /* background-color: white; */
}

.after-image {
    background-image: url('icons/evaluation/thumbsup-after.png');
}



.chart-section {
    width: 100%;
}


/* css for tab nav and chart section */
.tab-navbar {
    display: flex;
    border-bottom: 1px solid #adadad;
}

.nav-tab {
    flex: 1;
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;

    cursor: pointer;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    outline: none;

}

.nav-tab:hover {
    color: var(--primary-color);
}

.nav-tab.active {
    border-bottom: 3px solid var(--primary-color);
    color: var(--primary-color);
    outline: none;
}

.content-display {
    display: flex;
    height: 500px;
    width: 80%;
    padding: 20px;
    border: 1px solid black;
    border-radius: 8px;
    justify-content: center;

}

.display-div {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-image {
    width: 50px;
    height: 50px;
    background-color: white;
    border: none;
}