html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;

    font-family: "Montserrat", sans-serif;
}

.teacher-panel-nav {
    font-size: 1.2rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 90vh; */
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    box-sizing: border-box;
}

.dashboard {
    display: flex;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    flex-direction: row;
    align-items: stretch;
    /* justify-content: center; */
    height: 100%;
    min-height: 600px;
    width: 100%;
    background: rgba(220, 220, 220, 0.5);
}

.dashboard .sidebar {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    /* height: 100%; */
    width: 20%;
    min-width: 200px;
    background: rgba(0, 150, 150, 0.7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.sidebar .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 20%;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.profile .profile-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 50%; */
    width: 100px;
    border-radius: 50%;
    border: 1px solid rgb(129, 129, 129);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.5);
}

.profile .profile-pic img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.profile .profile-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50%;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.dashboard .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 80%; */
    width: 100%;
    border-radius: 20px;
}

.menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 90%;
    margin-bottom: 1rem;
    border-radius: 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.menu ul li.active {
    background: rgba(0, 0, 0, 0.3);
    color: white !important;
}

.menu ul li:hover {
    background: rgba(0, 0, 0, 0.3);
}

.menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    font-weight: 500;
}

.menu ul li button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    font-weight: 500;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.menu ul li.active a {
    color: white !important;
}

.dashboard .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    justify-content: center;
    height: 100%;
    width: 80%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin-left: 2rem;
}

.hide {
    display: none !important;
}

.show {
    display: flex !important;
}

.main>.all-student-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 80%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin-left: 2rem;
    padding: 1rem;
}

.main>.set-class-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 80%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin-left: 2rem;
    padding: 1rem;
}

.tab-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 10%;
    width: 100%;
    background: rgba(74, 228, 242, 0.5);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.tab-container>.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;
    background: rgba(226, 226, 226, 0.67);
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.tab-container>.tab.active {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.all-student-container>.registered-student-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-sizing: border-box;
    padding: 1rem;
}

.hideTable {
    display: none !important;
}

table {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-sizing: border-box;
    padding: 1rem;
}

table>thead {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 10%;
    width: 100%;
    background: rgba(74, 228, 242, 0.5);
    border-radius: 5px;
    overflow: hidden;
    margin: 0.2rem;
}

table>thead>tr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    background: rgba(74, 228, 242, 0.5);
    border-radius: 5px;
    overflow: hidden;
}

table>thead>tr>th {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* width: 20%; */
    /* background: rgba(226, 226, 226, 0.67); */
    border: none;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

table>tbody {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-sizing: border-box;
}

table>tbody>tr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 10%;
    width: 100%;
    background: rgba(74, 228, 242, 0.5);
    border-radius: 5px;
    overflow: hidden;
    margin: 0.2rem;
}

table>tbody>tr>td {
    align-items: center;
    justify-content: center;
    height: 100%;
    /* width: 20%; */
    border: none;
    padding: 1rem;
    text-align: center;
    font-size: .8rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100px;
    word-wrap: break-word;
}

dialog {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 50%;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 1rem;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

dialog>.heading {
    margin: 1rem;
}

dialog>.heading>h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.775);
    margin-bottom: 1rem;
}

dialog>.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
    width: 100%;
    /* background: rgba(255, 255, 255, 0.5); */
    border-radius: 20px;
    box-sizing: border-box;
    padding: 1rem;
}

dialog>.form>.field-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 20%;
    width: 100%;
    /* background: rgba(255, 255, 255, 0.5); */
    border-radius: 20px;
    box-sizing: border-box;
    padding: 1rem;
}

dialog>.form>.field-container>label {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.95);
}

dialog>.form>.field-container>input {
    width: 70%;
    border: none;
    border-radius: 5px;
    padding: 0.5rem;
    box-sizing: border-box;
    outline: none;
    /* font-size: 1rem; */
    font-weight: 400;
    color: rgba(0, 0, 0, 0.95);
    /* background: rgba(10, 10, 10, 0.4); */
    border: 1px solid rgba(0, 0, 0, 0.3);
}

/*disabled input*/
dialog>.form>.field-container>input:disabled {
    width: 70%;
    border: none;
    border-radius: 5px;
    padding: 0.5rem;
    box-sizing: border-box;
    cursor: not-allowed;
    outline: none;
    /* font-size: 1rem; */
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    /* background: rgba(10, 10, 10, 0.4); */
    border: 1px solid rgba(0, 0, 0, 0.3);
}

dialog>.form>.button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 20%;
    width: 50%;
    /* background: rgba(255, 255, 255, 0.5); */
    border-radius: 20px;
    box-sizing: border-box;
    margin: 1rem;
    padding: 1rem;
}

dialog>.form>.button-container>button {
    width: 40%;
    /* height: 100%; */
    border: none;
    border-radius: 5px;
    padding: 0.5rem;
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.95);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    width: 100%;
    /* background: rgba(255, 255, 255, 0.5); */
    border-radius: 20px;
    box-sizing: border-box;
    padding: 1rem;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    /* background: rgba(0, 0, 0, 0.5); */
    /* border-radius: 20px; */
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    /* border: 1px solid rgba(0, 0, 0, 0.3); */
}

.login-container>.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    /* background: rgba(0, 0, 0, 0.5); */
    /* border-radius: 20px; */
    box-sizing: border-box;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
    /* border: 1px solid rgba(0, 0, 0, 0.3); */
}

.login-container>.logo-container>img {
    max-width: 300px;

}

.login-container>.login-heading {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.775);

}

.login-container>.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-container>.login-form>.field-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.login-container>.login-form>.field-container>label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
}

.login-container>.login-form>.field-container>input {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    box-sizing: border-box;
    color: #000;
    outline: none;
}

.login-container>.login-form>.login-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 1rem;
}

.login-container>.login-form>.login-btn>button {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: none;
    padding: 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    box-sizing: border-box;
    color: #fff;
    outline: none;
    cursor: pointer;
    background: #000;
    transition: all 0.3s ease-in-out;
}