body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(#eeeeff, #cbc7ff);
  color: #333;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #5350c4;
  color: white;
}
.back-button {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.2s;
}

.back-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.back-button i {
  margin-right: 8px;
}
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 125px; /* Adjust size as needed */
  height: auto;
}
.user-profile {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 50px;
  padding: 8px 15px;
  color: #333;
}

.avatar {
  width: 32px;
  height: 32px;
  background-color: #ff7f50;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-right: 10px;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.username {
  font-weight: 500;
  font-size: 14px;
}

.user-message {
  font-size: 12px;
  color: #666;
}
.status-main-content {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow-y: auto;
}

.status-form-group {
  margin: 0 20px 20px 0;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.status-search-button {
  width: 100%;
  padding: 12px;
  background-color: #5350c4;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.status-search-button:hover {
  background-color: #413e92;
}

.results-container {
  margin-top: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
}

.result-item {
  margin-bottom: 20px;
  padding: 15px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.error-message {
  color: #f44336;
  font-size: 14px;
  margin-top: 5px;
  min-height: 20px;
}

/* Supported Airlines Styles */
.supported-airlines-container {
  margin-top: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.supported-airlines-header {
  background-color: #f5f5f5;
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.supported-airlines-header:hover {
  background-color: #ebebeb;
}

.supported-airlines-header h3 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #5350c4;
}

.supported-airlines-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.supported-airlines-content.expanded {
  max-height: 500px;
}

.airlines-list {
  list-style-type: none;
  padding: 15px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}

.airlines-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.airline-code {
  display: inline-block;
  background-color: #5350c4;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.airline-code:hover {
  background-color: #413e92;
}