body {
    font-family: Arial, sans-serif;
  
    align-items: center;

}

#header-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 380px; 
    background-color: #fff;
    z-index: 1000;
}

#bdy-table {
    margin-top: 380px;
}
#logo {
    align-items: center;
}
#logo img {
    max-width: 100px;
    height: auto;
}

#lg-out-btn a{
    color: black;
    text-underline-offset:none;
    
}

#header-header button{
    text-underline-offset: none;
    color:#c08181;
    cursor: pointer;
    align-content: flex-start;
}

#header{
    background-color: rgb(255, 251, 251);
    color: rgb(0, 0, 0);
    text-align: center;
}
#header img{
    max-width: 100px;
    height: auto;
    align-content: start;
}



#extra-buttons {
    display: flex;
    justify-content: space-between;
    align-items:end;
    background-color: #c2aa0a;
   
    color: yellow;
}
    
#extra-buttons button {
    padding: 10px 20px;
    background-color: #020302;
    color: rgb(202, 237, 24);
    border: none;
    cursor: pointer;
}
#form{
    background-color:#f0f0ef;
    
    border-radius: 5px;
}

#form input[type="text"] {
    max-width:20%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}


#searchBar {
    margin-bottom: 20px;
}

#searchBar input {
    padding: 8px;
    margin-right: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
}
table th{
    background-color: #714a0f;
    color: white;
}
table tr :hover{
    background-color: #bab3b3;
}
table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: center;
}

img:hover {
    cursor: pointer;
}
img {
    max-width: 50px;
    height: auto;
}
#display{
   
    justify-content: center;
    align-items: center;
    background-color: #f0e9e9;
}


/* Login Section */
#login-form {
    max-width: 300px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#login-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

#login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#login-form button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#login-form button:hover {
    background-color: #45a049;
}
/* footer*/
#footer{
    background-color: #2d372d;
    color: rgb(255, 251, 251);
    text-align: center;
    padding: 10px;
    bottom: 0;
}