/* These styles are for the popup menus */
    .popup {
        background-color: rgba(0, 0, 0, 0.3);
        opacity: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: all 0.3s ease-in-out;
        z-index: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup.open {
        opacity: 1;
        z-index: 999;
    }

    .popup-inner {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(218, 216, 216, 0.2);
        min-width: 300px;
    }

    .popup-buttons {
    display: flex;
    gap: 10px;             
    margin-top: 20px;
    justify-content: flex-end; 
    flex-wrap: wrap;          
    }

    .cancel-btn {
    background-color: #7a7878;
    color: #ffffff;
    border-radius: 3px;
    }

    .change-btn {
    background-color: #ffd900d2;
    color: #333;
    border-radius: 3px;
    }

    .edit-btn {
    background-color: #d47b07e7;
    color: #ffffff;
    border-radius: 3px;
    }

    .delete-btn {
    background-color:rgb(255, 102, 0);
    color: #ffffff;
    border-radius: 3px;
    }

    .submit-btn {
    background-color: #00aeff;
    color: white;
    border-radius: 3px;
    }

    .add-btn {
    background-color: #0077ff;
    color: rgb(255, 255, 255);
    border-radius: 3px;
    }

    .excel-btn {
     background-color: #27ac2d;
     color: rgb(255, 255, 255);
     border-radius: 3px;
    }

    .log-btn {
     background-color: #043f75;
     color: rgb(255, 255, 255);
     border-radius: 3px;
    }
    
    .timesheet-btn {
     background-color: #e00d0d;
     color: rgb(255, 255, 255);
     border-radius: 3px;
    }

    .create-btn {
     background-color: #229913;
     color: rgb(255, 255, 255);
     border-radius: 3px;
    }

    .header-red {
    background-color: #ff1900b9;
    }

/* These styles are used for table in the admin employee work entry history */

    table {
        font-family: arial, sans-serif;
        border-collapse: collapse;
        width: 100%;
    }

    td, th {
        border: 1px solid #dddddd;
        padding: 8px;
    }

    thead {
      border-bottom: 2px solid rgb(160 160 160);
      text-align: center;
      background-color: #2c5e77;
      color: #fff;
    }

/* Styles for form drop */

  .form-control {
    height: 45px;
    font-size: 16px;
    padding: 10px;
    border-radius: 3px;
    border-width: 2px;
    border-color: #56585a;
  }

  .select2-container .select2-selection--single {
    height: 45px;
    padding: 7px 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    border-width: 2px;
    border-color: #56585a;
  }

  .select2-selection__arrow {
    height: 100%;
  }

  .select2-selection__rendered {
    line-height: normal;
  }

  .h1 {
    font-size: 36px;
  }

  .h2 {
    font-size: 24px;
    font-weight: 500;
  }


/*Admin Dashboard*/

  .card-title {
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

.btn-primary {
  width: 80%;
}

/* Login CSS */
  .thick-input{
    height: 33px;
  }

  .text-size{
    font-size: .9rem;
    margin-bottom: 1px;
  }

  .username-input-field{
    width: 300px; 
    margin: auto;
    margin-bottom: 10px;
  }

  .password-input-field{
    width: 300px; 
    margin: auto;
    margin-bottom: 30px;
  }

  .login-button-setting{
    width: 300px; 
    margin: auto;
  }
.container-style {
  margin-top: 100px;
  width: 350px;
  min-height: 50vh;
  padding: 20px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  border: 1px solid #dee2e6;
}

.project-scroll-container {
  max-height: 60vh;
  overflow-y: auto;
}

