@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

body {
    background: #f0f4f8;
}

#app {
    display: flex;
    height: 100vh;
}

#content-container {
    background-image: url('/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 20px 40px;
    width: 100%;
    /* border-radius: 60px; */
    overflow: hidden; /* Prevent scrollbar overflow */
}

#content-container .main-content {
    background-color: #FCFBEB;
    height: calc(100vh - 100px);
    border-radius: 60px;
    box-shadow: 1px 1px 15px black;
    margin: 19px 39px;
    overflow: hidden; /* Prevent content from overflowing outside rounded corners */
}

.scrollable-content {
    height: 100%;
    overflow-y: auto;
    padding-right: 10px; /* Add padding to keep scrollbar from overlaying content */
}

/* Scrollbar Styling */
.scrollable-content::-webkit-scrollbar {
    width: 12px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.scrollable-content {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

#content-container .main-content h1 {
    text-align: center;
    font-weight: 500;
    margin: 20px 0px;
    color: black;
}

h1 {
    text-align: center;
    font-weight: 300;
    margin: 20px 0px;
}

.worksheet label{
    color: black;
}
.worksheet button{
    color: white;
    background: #528e32;
    padding: 6px 16px;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
}
.worksheet .worksheet-fields{
    margin: 1.5% 0;
    width: 100%;
    display: flex;
}
.worksheet .worksheet-fields label{
    display: block;
    width: 30%;
}
.worksheet .worksheet-fields input{
    display: block;
    width: calc(100% - 40%);
}
.worksheet .worksheet-fields select{
    display: block;
    width: calc(100% - 40%);
}
/* Login */
.primary-btn{
    color: white;
    background: #ef5350;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-weight: 600;
}
.vertical-line{
    border-right: solid 3px #4371c2;
}
.login-screen .alignment{
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: inherit;
}
.login-screen{
    height: inherit;
    width: 100%;
}
.login-screen .d-flex > div{
    width: 50%;
    text-align: center;
}
.login-screen .d-flex > div.login-content{
    margin: 0 10%;
    width: calc(50% - 20%);
}
.form-content input[type="email"], .form-content input[type="password"]{
    width: 100%;
    border-radius: 5px;
    border: solid 1px;
    padding: 10px;
    font-size: 15px;
}
.form-content label{
    text-align: left;
}
.left-align{
    text-align: left;
}
.center-align{
    text-align: center;
}
.flt-right{
    float: right;
}
.form-content > div {
    margin-bottom: 5%;
    font-size: 15px;
}
/* Dashboard */
.all-caps{
    text-transform: uppercase;
}
.grid-container {
    display: grid;
    grid-template: 50% / 1fr 1fr 1fr;
    column-gap: 10px;
    row-gap: 15px;
    justify-items: center;
    align-items: center;
}
.grid-container img{
    width: 60%;
}
.grid-item{
    text-align: center;
}
.teacher-dashboard .logout-img{
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
}
.teacher-dashboard{
    position: relative;
}
.active{
    display: block;
}
.not-active{
    display: none !important;
}