body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f2f2f2;
}

.sidebar {
    background-color: #333;
    color: #fff;
    height: 100vh;
    width: 200px; /* Adjusted width for a more corporate look */
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
}

.sidebar h1 {
    margin-top: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sidebar li {
    position: relative; /* Needed for dropdown positioning */
    padding: 15px 0; /* Adjusted padding for better spacing */
}

.sidebar li a {
    color: #fff;
    text-decoration: none;
    display: block; /* Make the entire area clickable */
    padding: 10px; /* Added padding for better click area */
    transition: background-color 0.3s; /* Smooth background transition */
}

.sidebar li a:hover {
    background-color: #444; /* Darker background on hover */
}

.dropdown {
    display: none; /* Hide dropdown by default */
    position: absolute; /* Position it relative to the parent */
    left: 200px; /* Align to the right of the parent */
    top: 0; /* Position the dropdown to the right of the main menu item */
    background-color: #333; /* Same background as sidebar */
    border-radius: 5px; /* Rounded corners */
    z-index: 1; 
    pointer-events: auto; /* Ensure dropdown is above other elements */
}

/* Show the dropdown when hovering over the parent li */
.sidebar li:hover .dropdown {
    display: block; /* Show the dropdown */
}

/* Style for dropdown links */
.dropdown li {
    width: 200px; /* Set a width for the dropdown items */
}

.dropdown li a {
    display: block; /* Make the links block elements */
    padding: 8px 12px; /* Padding for the links */
    text-decoration: none; /* Remove underline */
    color: white; /* Text color */
}

/* Change color on hover */
.dropdown li a:hover {
    background-color: #444; /* Background color on hover */
}

.content {
    margin-left: 220px; /* Adjusted for sidebar width */
    padding: 20px;
}

.dashboard {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dashboard .card {
    display: inline-block;
    width: 25%;
    margin-right: 2%;
    padding: 20px;
    color: #fff;
    border-radius: 5px;
}

.dashboard .card:last-child {
    margin-right: 0;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
}

.welcome-section {
          display: flex;
          align-items: center;
      }
	  
	  .table-container {
	              margin: 0 auto;
	              width: 100%; /* Full width */
	              background-color: #fff;
	              padding: 20px;
	              border-radius: 5px;
	              box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	          }

	          .table-container table {
	              width: 100%;
	              border-collapse: collapse;
	          }

	          .table-container th, .table-container td {
	              border: 1px solid #ddd;
	              padding: 10px;
	              text-align: left;
	          }

	          .table-container th {
	              background-color: #f0f0f0;
	          }

.pagination a {
          margin: 0 5px;
          padding: 8px 12px;
          background-color: #f0f0f0;
          text-decoration: none;
          color: #333;
          border-radius: 3px;
      }

      .pagination a.active {
          background-color: #4CAF50;
          color: white;
      }

      .pagination a:hover {
          background-color: #ddd;
      }

.btn-secondary {
           background-color: #f44336;
           color: white;
           padding: 6px 12px;
           border: none;
           border-radius: 2px;
           cursor: pointer;
           font-size: 16px;
       }

       .btn-secondary:hover {
           background-color: #d32f2f;
       }

.btn-primary:hover {
    background-color: #45a049;
}

.signout {
    margin-left: auto; /* This will push the sign out button to the right */
}

.signout a {
    text-decoration: none;
    color: #007bff; /* Change color as needed */
    font-weight: bold; /* Optional: make the sign out link bold */
}