html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  padding:0px!important;
  margin-bottom: 60px;
}

nav, footer{
    z-index:1;
    background-color:lavender;
    color:white;
}

.login-container {
    display: flex;
    height: 100vh;
}

.left-side {
    flex: 1;
    overflow-y: hidden;
}

.right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
}

.login-form {
    width: 80%;
    max-width: 400px;
}

.top, header{
    position:absolute; 
    top:0px;
}

header {
    width: 100%;
    display:sticky;
    top:0;
}

footer {
    bottom:0px;
    position: fixed!important;
}

.scroll {
    overflow-y:scroll;
    height:200px;
}


.form-popup3 {
    display: none;
    position: fixed;
    Top: 85px;
    right: 5px;
    z-index: 9;
}

.Alert {
    padding: 15px;
    background-color: #f44336;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
}

    .Alert.success {
        background-color: #04AA6D;
    }

    .Alert.info {
        background-color: #2196F3;
    }

    .Alert.warning {
        background-color: #ff9800;
    }

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    .closebtn:hover {
        color: black;
    }

    /* When moving the mouse over the close button */
    .closebtn:hover {
        color: black;
    }
.table-container {
    max-height: 400px;
    overflow-y: auto;
    margin: 20px 0;
    border: 1px solid #ddd;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
    z-index: 1;
}
 