
/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #202124;
  color: #e8eaed;
  margin: 0;
  padding: 20px;
  padding-bottom: 60px; /* Footer height */
  padding-top: 160px; /* Navbar height */
}

a {
  color: #8ab4f8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button, input[type="button"], input[type="submit"] {
  background-color: #1a73e8;
  border: none;
  color: white;
  padding: 7px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background-color: #155ab6;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 20px;
  z-index: 999;
}

.navbar-logo img {
  height: auto;
}

.navbar-menu {
  position: relative;
}

.dropdown-toggle {
  color: #ffffff;
  cursor: pointer;
  padding: 10px;
  background-color: #444;
  border-radius: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #666;
  min-width: 200px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.navbar-menu:hover .dropdown-content {
  display: block;
}

#logout-container {
  display: flex;
  align-items: center;
}

.logout-btn {
  margin-left: 10px;
  cursor: pointer;
  background-color: #444;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
  transition: background-color 0.3s ease-in-out;
}

.logout-btn:hover {
  background-color: #555;
}

.username {
  margin-right: 50px;
  margin-left: 20px;
  color: white;
  font-weight: bold;
}


/* Responsive */
@media (max-width: 767px) {
  .action-container {
    flex-direction: column;
  }
  
  .tooltip {
    position: relative;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
    left: -100px;
  }
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 20px;
    z-index: 999;
  }

  .navbar-logo img {
    height: auto;
    width: 50px;
  }

  .navbar-menu {
    position: relative;
  }

}
