
#analytics_list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow-y: auto;
    height: calc(100% - 70px);
}

.analytics_card{
    display: flex;
    flex-direction: row;
    background-color: white;
    padding: 16px;
    border-radius: 10px;
    background-color: var(--color-extra-light);
    border: 1px solid var(--color-light);
    width: calc((100% - 176px) / 4);
    justify-content: center;
}
.analytics_card_header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.analytics_card_title{
    font-weight: 500;
    font-size: 13px;
    color: var(--color-medium);
    text-align: center;
}
.analytics_card_body{
    font-size: 16px;
    font-weight: 600;
    color: var(--color-accent);
    text-align: center;
}
.analytics_card_icon {
    color: var(--color-accent);
    background-color: var(--color-accent-light);
    font-size: 22px;
    padding: 8px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.analytics_table_header {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    color: var(--color-medium);
    background-color: white;
    border-radius: 6px;
    padding-top: 11px;
    padding-bottom: 11px;
    border: 1px solid var(--color-light);
}

.analytics_tab_table_50p {
    width: calc(50% - 52px);
    background-color: var(--color-extra-light);
    border-radius: 10px;
    border: 1px solid var(--color-light);
    padding: 20px;
    height: 355px;
}

tr.analytics_table_head th {
    background-color: var(--color-light);
    color: var(--color-medium);

}

tr.analytics_table_head th:first-child {
    border-radius: 6px 0 0 6px;
    border: none;
}

tr.analytics_table_head th:last-child {
    border: none;
    border-radius: 0 6px 6px 0;
}

.analytics_table_wrapper {
    width: calc(100% - 0px);
    height: calc(100% - 50px);
    overflow-y: auto;
}

.analytics_table tr:first-child {
    border-bottom: none!important;
}