/* Custom Styles for User Management */
.user-table {
  width: 100%;
}

.user-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.user-table td, .user-table th {
  vertical-align: middle;
}

.user-table .btn {
  margin: 2px;
}

/* Modal Styles */
#newUserModal .modal-content {
  border-radius: 0.3rem;
}

#newUserModal .modal-header {
  background-color: #007bff;
  color: white;
}

#newUserModal .modal-header .close {
  color: white;
  opacity: 1;
}

#newUserModal .required {
  color: #dc3545;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .user-table .btn {
    width: 100%;
    margin: 5px 0;
  }
  
  .user-table td:last-child {
    white-space: nowrap;
  }
}

/* Sidebar Active State */
.nav-pills .nav-link.active {
  background-color: #007bff;
}

/* Main Content Padding */
.content-wrapper {
  padding: 20px;
}

/* Card Header Styles */
.card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid rgba(0,0,0,.125);
}

/* Form Control Styles */
.form-control {
  border-radius: 0.25rem;
}

/* Button Styles */
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}
