* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: #f4f6fb;
    color: #1f2933;
  }
  
  /* Layout */
  .dashboard {
    display: flex;
    min-height: 100vh;
  }
  
  /* Sidebar */
  .sidebar {
    width: 220px;
    background: #111827;
    color: #fff;
    padding: 20px;
  }
  
  .sidebar h2 {
    margin-bottom: 30px;
    font-size: 22px;
  }
  
  .sidebar ul {
    list-style: none;
  }
  
  .sidebar li {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  
  .sidebar li:hover,
  .sidebar .active {
    background: #4f46e5;
  }
  
  /* Main */
  .main {
    flex: 1;
    padding: 20px 30px;
  }
  
  /* Topbar */
  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .topbar input {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 260px;
  }
  
  /* Cards */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }
  
  .card h3 {
    font-size: 14px;
    color: #6b7280;
  }
  
  .card p {
    font-size: 26px;
    font-weight: 700;
    margin-top: 10px;
  }
  
  /* Table */
  .table-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }
  
  .table-section h2 {
    margin-bottom: 15px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th, td {
    padding: 12px;
    text-align: left;
  }
  
  thead {
    background: #f9fafb;
  }
  
  tbody tr:hover {
    background: #f3f4f6;
  }
  
  th {
    font-size: 14px;
    color: #6b7280;
  }
  
  td {
    font-size: 14px;
  }
  
  /* Status */
  .status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
  }
  
  .status.pending {
    background: #fde68a;
    color: #92400e;
  }
  
  .status.completed {
    background: #bbf7d0;
    color: #166534;
  }
  
  .status.cancelled {
    background: #fecaca;
    color: #7f1d1d;
  }
  #statuse{
    padding: 10px;
    border: 0px;
    background-color: #166534;
    color: white;
    font-weight: 500;
    font-size: 16px;
    border-radius: 20px;
    outline: none;
  }
  #statuse option{
    background-color: rgb(83, 83, 83);
  }
  /* pagesize */
  .show-page{
    width: 100%;
    text-align: center;
    padding: 15px;
    
  }
  .show-page .box-pages span{
    margin: 10px;
    border: 2px solid #4f46e5;
    border-radius: 100px;
    padding: 4px 10px;
    transition: 0.5s;
    margin:10px;
  }
  .show-page .box-pages {
    margin-top: 30px;
  }
  .show-page .box-pages span:hover{
    background-color: #4f46e5;
    color: white;
    cursor: pointer;
  }
  .show-page .box-pages{
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .loading {
    display: none;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #4F46E5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
  }
button{
  width: 100px;
  height: 30px;
  border-radius: 5px;
  border: none;
  background-color: #111827;
  color: white;
  font-size: 0.9em;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
button:hover{
  transform: scale(1.1);
}
  @keyframes spin {
    100% {
      transform: rotate(360deg);
    }
  }
    
  /* Responsive */
 
  
@media screen and (max-width:768px) {
  .sidebar {
    display: none;
  }
}
