.bs-login-form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding:50px;
}
.bs-login-form > div{
  width: 100%;
}
.bs-form {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: Arial, sans-serif;
}

.bs-form-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 20px;
}

.bs-field {
  flex: 0 0 48%;
  margin-bottom: 15px;
}
.bs-field label {
  color: #072F49;
  font-weight: 600;
}

.bs-field input{
  width: 100%;
  padding: 10px;
  border: 1px solid #D2D6DA;
  border-radius: 0px;
  font-size: 14px;
  color: #072F49;
  outline: none;
  margin-top: 10px;
}

.bs-submit {
  background-color: #4cb4a6;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px 30px;
  cursor: pointer;
  width: 100%;
  border-radius: 3px;
  transition: background 0.3s ease;
  max-width: 400px;
  margin: auto;
}

.bs-submit:hover {
  background-color: #3fa193;
}
.bs-table {
  width: 100%;
  border-collapse: separate;
    border-spacing: 5px 5px;
  margin-top: 30px;
  font-size: 14px;
}

.bs-table th,
.bs-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.bs-table th {
  background-color: #062944;
  color: white;
}
.bs-table th:last-child, .bs-table td:last-child {
  background-color: transparent ;
  border: 0px solid transparent;
}

.bs-approve {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 3px;
  cursor: pointer;
}

.bs-decline {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 3px;
  cursor: pointer;
}

.bs-archive {
  background-color: #ccc;
  color: white;
  border: none;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 3px;
  /* cursor: not-allowed; */
}

.bs-export {
  background-color: #062944;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
}

.bs-logout {
  display: inline-block;
  padding: 10px 20px;
  background: #4cb4a6;
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
}
.bs-flex{
      display: flex;
    justify-content: center;
    align-items: center;
}
 .status-approved { 
    background-color: #d4edda; 
    color: #155724; 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: bold; 
}
.status-declined { 
    background-color: #f8d7da; 
    color: #721c24; 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: bold; 
}
.status-pending { 
    background-color: #fff3cd; 
    color: #856404; 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: bold; 
}
.status-archived { 
    background-color: #e2e3e5; 
    color: #495057; 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 12px; 
    font-weight: bold; 
}
.archived-row { 
    opacity: 0.6; 
    background-color: #f8f9fa; 
}
.archived-text { 
    color: #6c757d; 
    font-style: italic; 
}
.actions-container {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.bs-approve:disabled,
.bs-decline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* Filter styles */
.bs-header {
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
}

.bs-filters {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.filter-label {
    display: none; /* Hide the FILTERS label */
}

.filter-btn {
    padding: 8px 10px;
    border: none;
    background-color: transparent;
    color: #666666;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    margin-right: 10px;
}

.filter-btn:hover {
    color: #4FAD97;
}

.filter-btn:focus {
    outline-width: 0px;
    outline-style: none;
}

/* .filter-btn.active {
    color: #333333;
    font-weight: 600;
} */

/* Add colored dots before each filter button */
.filter-btn:before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #D2D6DA;
    vertical-align: middle;
}

/* All filter - no dot */
.filter-btn.active:before {
  background-color: #4FAD97;
}


/* Remove the last margin */
.filter-btn:last-child {
    margin-right: 0;
}

/* Status indicator styles */
.status-pending {
    background-color: #fff3cd;
    color: #856404;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-approved {
    background-color: #d4edda;
    color: #155724;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-declined {
    background-color: #f8d7da;
    color: #721c24;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status-archived {
    background-color: #e2e3e5;
    color: #495057;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Table row visibility for filters */
.bs-table tbody tr {
    transition: opacity 0.3s ease;
}

.bs-table tbody tr:not([style*="display: none"]) {
    opacity: 1;
}


/* Responsive design for filters */
@media (max-width: 768px) {
    .bs-filters {
        flex-wrap: wrap;
        gap: 8px;
    }
.bs-form-row {
  flex-wrap: nowrap;
display:block!important;
}
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}