h1 {
  color: rgb(0, 9, 74);
}

.box {
  border: 1px solid red;
}

label {
  color: white !important;
}

.logo {
  width: 150px;
  height: 150px;
}

.table-container {
  padding: 16px;
  margin-top: 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 18px;
  text-align: left;
}

.table th,
.table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table tr:hover {
  background-color: #f1f1f1;
}

.table a {
  color: #3498db;
  text-decoration: none;
}

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


.detail-container {
  padding: 16px;
  margin-top: 16px;
}

.detail-container h1 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.detail-container p {
  font-size: 18px;
  margin: 8px 0;
}

.detail-container hr {
  margin: 16px 0;
}

.detail-container .download-button {
  padding: 12px 24px;
  border: none;
  background-color: #3498db;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.detail-container .download-button:hover {
  background-color: #2980b9;
}



/* base.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #121212;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden; /* Prevent scrollbars when image overlaps */
}

.login-wrapper {
  display: flex;
  justify-content: center;
  width: 50%;
  height: 100%;
  background-color: #1C1C1E;
  border-radius: 0 20px 20px 0;
  z-index: 10;
  position: relative; /* Ensure z-index works */
}

.drone-image {
  width: calc(50% + 40px);
  margin-left: -40px;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio while filling space */
  object-position: center; /* Center the image */
}

/* Add responsive breakpoint for mobile */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }

  .login-wrapper {
    width: 100%;
    border-radius: 0;
  }

  .drone-image {
    width: 100%;
    height: 40vh; /* Reduce height on mobile */
    margin-left: 0;
    order: -1; /* Move image to top on mobile */
  }
}
.login-box {
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.login-box .logo {
  width: 210px;
  margin-top: 100px;
  margin-bottom: 60px;
}

.login-box h2 {
  font-size: 20px;
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  color: #ffffff;
}

.login-box form {
  display: flex;
  flex-direction: column;
}

.login-box form .form-group {
  margin-bottom: 16px;
}

.login-box form .form-group .form-control {
  width: 100%;
  height: 48px;
  padding: 16px;
  margin-top: 8px;
  box-sizing: border-box;
  background-color: #333333;
  color: #ffffff;
  border: none;
  border-radius: 24px;
}

.login-box form .form-group label {
  display: block;
  color: #ffffff;
  text-align: left;
  font-size: 14px;
}

.login-box form .form-group .form-control input {
  width: 100%;
  padding: 8px;
  font-size: 16px;
}

.login-box form .forgot-password {
  font-size: 12px;
  text-align: right;
  margin-bottom: 16px;
  color: #007bff;
  text-decoration: none;
}

.login-box form .forgot-password:hover {
  text-decoration: underline;
}

.login-box .login-button {
  background-color: #007bff;
  color: white;
  border: none;
  height: 40px;
  border-radius: 20px;
  font-size: 15px;
  cursor: pointer;
}

.login-box .login-button:hover {
  background-color: #0056b3;
}

.login-box .cancel-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  background-color: #333333;
  height: 40px;
  border-radius: 20px;
  font-size: 15px;
  cursor: pointer;
}

.login-box .cancel-button:hover {
  background-color: #404040;
}

.login-box .cancel-button a {
  color: #ffffff;
  text-decoration: none;
}

.reset-info {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 32px;
  text-align: left;
  color: #ffffff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #999;
  color: #fff;
}

header .logo {
  height: 40px;
}

nav {
  position: relative;
}

nav button {
  background: none;
  border: none;
  cursor: pointer;
}

#navlinks {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 250px;
  background-color: #111;
  transform: translateX(100%);
  transition: transform 0.75s ease-in-out;
  z-index: 1000;
}

#navlinks.show {
  display: block;
  transform: translateX(0);
}

#navlinks li {
  padding: 20px;
}

#navlinks li a {
  color: #fff;
  text-decoration: none;
}

#navlinks li a:hover {
  text-decoration: underline;
}

#menu-open img,
#menu-close img {
  height: 24px;
  width: 24px;
}

#menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.download-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.download-table th,
.download-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.download-table th {
  background-color: #f2f2f2;
}