html, body {
  height: 100%; /* Ensure both html and body cover the full height of the viewport */
  margin: 0; /* Remove default margin */
  overflow-x: hidden;
}
body {
  background-image: url('../resources/sagif_background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Arial, sans-serif;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  background: linear-gradient(180deg, #4b6cb7 0%, #182848 50%);
  opacity: 0.8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  margin-top: 200px;
}



.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-container h2 {
  margin-bottom: 20px;
  color: white;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-top: 15px
  margin-bottom: 15px; /* Spacing between each form group */
}

select#selected-user {
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

label {
  margin-bottom: 5px;
  color: white;
}

input {
  margin-bottom: 10px;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.table_logo_gc
{
  text-align: center;
}

.confirmation-box {
    display: none;
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
button {
  background-color: #3498db;
  color: #fff;
  font-size: 14px;
  padding: 4px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

button:hover {
  background-color: #2980b9;
}


#logo_air {
     width: 200px;
}


#logo_gc {
     width: 160px;
}

@media(max-width:768px){
    #logo_air {
     width: 150px;
    }
  .login-card {
    width: auto; /* Make the card more responsive on smaller screens */
  }
}

.AIR_container {
        position: absolute;
        padding: 10px;
        top: 3%;
        right: 4%;
        background-color: rgba(255,255,255,0.0);
        background-blend-mode: lighten;
        z-index: 9000;
        color: #86e6fa;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
}


.logo_GC {
        position: absolute;
        padding: 5px;
        bottom: 1%;
        right: 5%;
        background-color: rgba(255,255,255,0.6);
        background-blend-mode: lighten;
        z-index: 9000;
        color: #1a1a1a;
        margin-left: auto;
        margin-right: auto;
        font-size: 11px;
        border-radius: 3px;
}




@media(max-width:768px){
.AIR_container {
        padding: 10px;
        top: 10px;
        right: 18%;
        background-color: rgba(255,255,255,0.0);
        background-blend-mode: lighten;
        z-index: 9000;
        color: #86e6fa;
        margin: auto;
        width: 45%;
        font-size: 10px;
}}
