body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F8F8F8;
    color: black;
        }

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.loginbox {
  width: 200px;
  height: 150px;
  padding: 100px;
  background-color: #636394;
  color: white;
  font-weight: bold;
}

.container {
  display: flex;
  height: 100vh;
}

.field-select {
    border: 2px solid #dcdcdc; 
    padding: 10px; 
}
  

.left-section {
    width: 200px;
    background-color: rgb(98, 98, 175);
    color: white;
    padding: 10px;
        }

.right-section {
    flex-grow: 1;
    background-color: #F8F8F8;
    padding: 15px;
    overflow-y: auto;
}
    
.columnContainer {
  display: flex;
  margin: 15px;
  justify-content: space-between;
  gap: 20px;
}

.column {
  flex: 1;
  padding: 25px;
  font-size: 0.8em;
  font-family: Arial, sans-serif;
  font-weight: normal;
  text-align: center;
  line-height: 1.8em;
  border: 2px solid #D0D0D0;
}

.twoColumncontainer {
    display: flex;
}

.twoColumn {
    width: 50%;
    padding:15px;
    margin: 5px;
    border: 2px solid #D0D0D0;
}
        
.image-container {
    width: 60px;
    height: 600px;
    }

.h2-left {
    color: white; 
    font-size: 2em; 
    font-family: Arial, sans-serif; 
    text-align: left; 
    margin-top: 20px; 
    margin-bottom: 10px;
    }

.h2-right {
    color: navy;
    font-size: 2em;
    font-family: Arial, sans-serif;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    }

h3 {
    color: rgb(98, 98, 175);
    font-size: 1.6em;
    font-family: Arial, sans-serif;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    }

h4 {
    color: rgb(98, 98, 175);
    font-size: 1.1em;
    font-family: Arial, sans-serif;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    }

.h3-center {
    color: rgb(98, 98, 175);
    font-size: 1.6em;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
}

.a-left {
    color:white;
}

.a-left:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

.a-left:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

.a-left:hover {
  color: yellow;
  background-color: transparent;
  font-weight: bold;
  text-decoration: none;
}

.a-left:active {
  color: yellow;
  background-color: transparent;
  font-weight: bold;
  text-decoration: none;
}

.a-table {
    color:rgb(98, 98, 175);
}

.a-table:link {
  color: rgb(98, 98, 175);
  background-color: transparent;
  text-decoration: none;
}


.a-table:hover {
  color: #8C001A;
  background-color: transparent;
  font-weight: bold;
  text-decoration: none;
}

.data-table {
        width: 100%; 
    }
    
.data-table th {
    background-color: rgb(98, 98, 175);
    color:white;
    font-size: 0.8em;
    font-family: Arial, sans-serif;
    font-weight: 600;
    text-align: center; 
    padding: 5px;
    } 

.data-table td {
    font-size: 0.8em;
    font-family: Arial, sans-serif;
    font-weight: normal;
    text-align: center; 
    padding: 5px;
    }
    
.data-table tr:nth-child(odd) {
  background-color: #ffffff; /* Light gray */
}

.data-table tr:nth-child(even) {
  background-color: #f2f2f2; /* White */
}

th {
    font-weight: bold;
}

tr[data-href] {
        cursor: pointer;
    }
    
.align-center {
    text-align: center;
}
    

.profile-table th {
    background-color: rgb(98, 98, 175);
    color: white;
    font-size: 0.8em;
    font-family: Arial, sans-serif;
    font-weight: 600;
    text-align: left; 
    padding: 10px;
    } 

.profile-table td {
    font-size: 0.8em;
    font-family: Arial, sans-serif;
    font-weight: normal;
    text-align: left; 
    padding: 10px;
    }

    
.profile-table tr:nth-child(odd) {
    background-color: #ffffff; /* Light gray */
}

.profile-table tr:nth-child(even) {
    background-color: #f2f2f2; /* White */
}

img {
  display: block; 
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto; /* allow content to grow */
  }

  .left-section {
    width: 100%;
    text-align: center; /* optional: center menu/content */
  }

  .right-section {
    width: 100%;
    flex-grow: unset;
  }
  
  .hide-on-mobile {
    display: none;
  }
}