* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    height: 100px;
    width: 100%;
    background-color: black;
    color: white;
}

nav ul li img {
    height: 70px;
    width: auto;
    margin-top: 20px;
    margin-left: 40px;
}

 header .ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: end;
    padding-bottom: 50px;
}

nav {
    width: 100%;
    height: 120px;
    background-color: black;
}

.abp:hover {
    background-color: black;
}

nav a:hover {
    background-color: rgb(250, 182, 57);
}

span.nav-img img {
    margin: 0 100px;
    margin-top: 30px;
}

nav ul {
    float: right;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    line-height: 120px;   
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    padding: 8px 15px;
}

nav ul li a.active,a:hover{
    background-color: rgb(250, 182, 57);
}


button {
    height: 25px;
    width: 150px;
    background-color: rgb(68, 66, 66);
    color: white;
    text-align: center;
}

button:hover {
    background-color: rgb(250, 182, 57);
    height: 40px;
    font-size: 15px;
    color: #0f1111;
}

.chat-box {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: rgb(250, 182, 57);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30PX;
    margin-bottom: 20PX;
    margin-left: 90%;
}

.text-input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 35%;
}

.text-input input {
    height: 50px;
    width: 90%;
    margin-right: 10px;
}

.heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.heading h1 {
    font-size: 50px;
}

.sign-up-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.sign-up-form input {
    height: 40px;
    width: 50%;
    margin-top: 20px;
}

.sign-up-form select {
    height: 40px;
    width: 50%;
    margin-top: 20px;
}

.sign-up-btn{
    margin-top: 20px;
}

.sign-up-btn button {
    height: 40px;
    width: 150px;
    background-color: rgb(247, 210, 44);
    cursor: pointer;
    color: black;
    border-radius: 5px;
}

#sign-up {
    margin-bottom: 30px;
}

.note {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
}

.note p {
    font-size: 15px;
    font-weight: 500;
}

.note a {
    text-decoration: none;
    color: white;
}

.chat-box i {
     font-size: 30px;
}

.warning {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.warning i {
    color: yellow;
}


/* chatgpt code */

#attandance-sheet {
    margin-top: 150px;
}

.container {
    margin-top: 25%;
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container h1 {
    text-align: center;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.container input[type="text"] {
    width: 90%;
    padding: 5px;
}

.container input[type="radio"] {
    margin-right: 10px;
}

.container button {
    height: 40px;
    padding: 10px 20px;
    background-color: rgb(247, 210, 44);
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    width: 50%;
}

.attandance-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.container button:hover {
    background-color: rgb(247, 210, 44);
}

.profile-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: gray;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-top: 80px;
    margin-left: 46.5%;
}

.me {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.me p {
    font-size: 30px;
    font-weight: 600;
}

.storage-view {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.storage-view .btn1:hover {
    height: 40px;
    width: 200px;
    background-color: rgb(247, 210, 44);
    margin-right: 40px;
}

.storage-view a:hover {
    background-color: rgb(247, 210, 44);
    height: 40px;
    width: 200px;
}

.btn1 {
    height: 40px;
    width: 200px;
}


.profile-image i {
    color: black;
    font-size: 35px;
}

.attandance-heading {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


