


body {
    font-family: Arial, sans-serif;
    background: url('img/bg_img2.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  select#role {
    width: 100%;
}
input#username {
    width: 96%;
}
input#password{
    width: 96%;
}
  
  .login-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 450px;
    height: 450px;
  }

  .login-Employee{

    background-color: white;
    
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 350px; /* Slightly wider form */
  padding: 25px;
  }
  
  input#employeeId {
    width: 96%;
}
  h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  input, select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }

  

 
  
  .form-container {
    background-color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 900px;
  }
  
  h2 {
    text-align: center;
    color: #007bff;
    margin-bottom: 20px;
  }
  
  .form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
  }
  
  .form-group {
    flex: 1;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  input, select {
    width: 96%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 15px;
  }
  
  button:hover {
    background-color: #0056b3;
  }



 div#togglePassword{
    display: flex;

    justify-content: flex-end;
    position: relative;
    top: -35px;
    right: 12px;}


 
  
 /* General Styles */  
  .dashboard {
    display: flex;
    height: 100vh;
  }
  
  /* Sidebar */
  .sidebar {
    background-color: #00274d;
    color: white;
    width: 250px;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .sidebar-header h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .sidebar nav ul li {
    margin-bottom: 10px;
  }
  
  .sidebar nav ul li a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 10px;
    border-radius: 5px;
  }
  
  .sidebar nav ul li a.active,
  .sidebar nav ul li a:hover {
    background-color: #004b87;
  }
  
  /* Main Content */
  .main-content {
    flex: 1;
    padding: 20px;
  }
  
  .dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    color: white;
    padding: 20px;
    border-radius: 5px;
  }
  
  .date-display {
    padding: 10px;
    border: none;
    background-color: #fff;
    border-radius: 5px;
    color: #333;
    font-size: 16px;
  }
  
  /* Section Title */
  .section-title {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
  }
  
  /* Cards */
  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .card {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card h3 {
    font-size: 18px;
    color: #333;
  }
  
  .card .value {
    font-size: 24px;
    color: #007bff;
    margin: 10px 0;
  }
  
  .card .change {
    font-size: 14px;
  }
  
  .card .change.positive {
    color: green;
  }
  
  .card .change.negative {
    color: red;
  }
  
  /* customer file css */

 