body {
  background-color: #f2f6f8;
  text-align: center;
  margin: 0 auto;
}

.bubble {
  margin: 20px auto;
  width: 95%;
  font: 15px Arial;
  background-color: #FFFFFF;
  color: #454545;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  justify-content: space-between
}

/* Registration Form Settings */
/* Form container styles */
.signup-bubble {
  margin: 20px auto;
  width: 400px;  /* Fixed width instead of percentage for better control */
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #454545;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form group spacing */
.form-group {
  margin-bottom: 20px;
}

/* Hide labels visually but keep them for screen readers */
.form-label {
  display: none;
}

/* Input field styles */
.form-control {
  width: 100%;
  height: 45px;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Submit button styles */
.btn-primary {
  width: 100%;
  height: 45px;
  background-color: #454545;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: darkblue;
}


/* Error message styles */
.text-danger {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  text-align: left;
}

/* Sign in link styles */
.text-center {
  margin-top: 20px;
}

.text-center a {
  color: #007bff;
  text-decoration: none;
}

.text-center a:hover {
  text-decoration: underline;
}

h1 {
  margin: 20px auto;
  width: 50%;
  background-color: #454545;
  color: #FFFFFF;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
}

/* Container for table scroll */
.table-container {
  max-width: 92%;
  margin: 0 auto;
  overflow-x: auto;
  border: 4px solid #000;
  border-radius: 8px;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  margin: 0;
  border: none;
}

/* Header styles */
thead {
  position: sticky;
  top: 0;
  background: #f8f9fa;
  z-index: 1;
}

th {
  color: #2c3e50;
  font-weight: 600;
  padding: 12px 8px;
  font-size: 13px;
  border-bottom: 2px solid #dee2e6;
}

/* Body styles */
td {
  padding: 10px 8px;
  color: #454545;
  font-size: 13px;
  line-height: 1.4;
  vertical-align: middle;
  border-bottom: 2px solid #dee2e6;
}

/* Alternating row colors */
tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

tbody tr:hover {
  background-color: #f1f3f5;
}

/* Caption styles */
caption {
  font-size: 1.5em;
  padding: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.column {
  float: left;
  width: 50%
}

.left {
  text-align: right;
  margin: 5px;
}

.right {
  text-align: left;
  margin: 5px;
}

.italic-mid {
  font-size: 125%;
  font-style: italic;
  text-align: center;
}

.italic-left {
  font-size: 125%;
  font-style: italic;
  text-align: left;
}

.italic-right {
  font-size: 125%;
  font-style: italic;
  text-align: right;
}

.big-bold {
  font-size: 150%;
  font-weight: bold;
  display: inline
}

.big-bold-italic {
  font-size: 150%;
  font-weight: bold;
  font-style: italic;
  display: inline
}

.mid-bold {
  font-size: 115%;
  font-weight: bold;
  display: inline
}

input[type="checkbox"] {
  vertical-align: middle;
}

.header-image {
  float:left;
  width:276px;
  height:210px;
  position: relative; 
  top: 0%; 
  left: 31%;
}

/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: #393f44;
    font-family: Arial;
    height: 50px;
    width: 100%;
  }
  
  /* Links inside the navbar */
  .navbar a {
    float: left;
    font-size: 14px;
    color: white;
    padding: 17px 6px;
    text-decoration: none;
    margin-left: 2.5%;
  }
  
  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }

  /* The dropdown container */
  .login-dropdown {
    float: right;
    overflow: hidden;
    font-size: 14px;
    color: white;
    padding: -17px 6px;
    text-decoration: none;
    margin-right: 2.5%;
    width: 100px;
  }

  /* Dropdown button */
  .login-dropdown .dropbtn {
    font-size: 14px;
    border: none;
    outline: none;
    color: white;
    padding: 17px 6px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }

  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 14px;
    border: none;
    outline: none;
    color: white;
    padding: 17px 6px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: darkblue;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 2px 4px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 12px;
    height: auto;
    margin-left: 0%;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
 
  /* Dropdown content (hidden by default) */
  .login-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .login-dropdown-content a {
    float: none;
    color: black;
    padding: 15px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 12px;
    height: auto;
    margin-left: 0%;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .login-dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown menu on hover */
  .login-dropdown:hover .login-dropdown-content {
    display: block;
  }
 
  /* Divider container */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

/* Lines on sides */
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ddd;
}

/* Text in middle */
.divider-text {
  padding: 0 10px;
  color: #666;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
/* Registration Form Settings */
/* Form container styles */
.signup-bubble {
  margin: 20px auto;
  width: 75%;  /* Fixed width instead of percentage for better control */
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #454545;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
}