.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.order-row {
    border: 1px solid #ddd;
}

.orders-table th, .orders-table td {
    padding: 8px;
    text-align: left;
}

.orders-table th.sortable-header {
    cursor: pointer;
    position: relative;
    user-select: none; 
    border: 1px solid #ddd;
  }
  
  .orders-table th.sortable-header:hover {
    background-color: #f2f2f2;
  }

  .arrow-container {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .orders-table th.sortable-header:after {
    content: '\21C5';
    opacity: 0.8;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  

  


.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 5px;
}

.pagination li {
    margin: 0 10px;
}

.pagination a {
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pagination .current {
    background-color: #ffffff;
    color: #000000;
}


.form-group {
    margin-bottom: 5px;
}









.login-form {
    max-width: 400px;
    margin: auto;
    margin-left: 0;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-form input {
    width: 100%;
    padding: 5px;
    margin-bottom: 0px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #45a049;
}



body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3 {
    font-family: 'Lato', sans-serif;

}

h3 {
    color: #555;
    padding: 5px;
    text-align: center;
}

