﻿body {
    font-family: var(--bs-body-font-family);
}

.table-body {
    margin-left: auto;
    margin-right: auto;
    margin-top: 13rem;
    padding-top: 3vw;
    padding-bottom: 2vw;
    margin-bottom: 7vw;
    background-color: #ade6ce;
    height: auto;
    width: 85%;
    align-items: center;
}

.sample-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    margin-left: 3vw;
    color: white !important;
}

.sample-img {
    position: relative;
    width: 7vw;
    height: 100%;
    margin-left: -3vw;
    margin-right: 5vw;
    margin-top: 1vw;
}

.login {
    float: right;
    font-weight: bolder;
}

.login-border {
    outline-style: auto;
    outline-width: 1px;
    outline-color: black;
    border-radius: 15px;
    padding: 10px;
}

.main-logo-container {
    text-align: center;
}

.main-logo {
    text-align: center;
}

.table-container {
    width: 100%;
    height: auto;
    display: grid;
    /* flex-direction: column; */
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    gap: 2vw;
}
.table {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
}

.header-container {
    position: relative;
    top: 1vw;
    font-weight: bold;
    font-size: 2vw;
    color: #fff !important;
}

.paragraph-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    color: #fff !important;
    font-size: 1.1vw;
    font-style: italic;
    width: 100%;
    height: auto;
    font-weight: 500;
}

.cell-container {
    background-color: white;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 5vw;
    border-bottom-right-radius: 5vw;
    padding: 1.5vw;
    padding-left: 1vw;
    padding-right: 1vw;
}

.cell-1, .cell-2 {
    text-align: center;
    width: 85%;
    height: 100%;
    position: relative;
    background: darkblue;
    color: white;
    border-radius: 3vw;
    border-style: solid;
    border-color: darkslateblue;
    min-height: 37vw;
}

.table2 {
    width: 60vw;
    height: 50vw;
}

.cell-3 {
    top: 0.5vw;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    background: darkblue;
    color: white;
    border-radius: 20px;
    display: flex; /* Make cell-3 a flex container */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    font-size: 15px;
}

.cell-3-table {
    outline-style: auto;
    outline-width: 1px;
    outline-color: black;
    border-radius: 15px;
    padding: 10px;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px; /* Add margin to push the table lower */
}

.cell-3-1, .cell-3-2 {
    text-align: center;
    width: 100%;
    height: 25vw;
    position: relative;
    background: darkblue;
    color: white;
    font-size: 1vw;
}

.shadow-none-2 {
    box-shadow: none !important;
    height: 100%;
    position: relative;
}



