
.status-online { color: #28a745;
}
.status-offline { color: #dc3545;
}
.card-header { background-color: #f8f9fa;
}
.table th { border-top: none;
}
.table td { vertical-align: middle;
}
.filter-container { 
  background-color: #f8f9fa; 
  padding: 10px; 
  border-radius: 5px; 
  margin-bottom: 15px;
}
.agent-table-container {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
}

/* For larger screens, add padding for better visual appeal */
@media (min-width: 1200px) {
.container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}
.agent-table-container {
    max-height: calc(100vh - 250px);
}
}

/* For extra large screens like 1920px+, add more padding */
@media (min-width: 1920px) {
.container-fluid {
    padding-left: 4rem;
    padding-right: 4rem;
}
.agent-table-container {
    max-height: calc(100vh - 220px);
}
}

/* Responsive improvements for mobile and tablet */
@media (max-width: 768px) {
.container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}
.agent-table-container {
    max-height: calc(100vh - 350px);
}
  
  /* Make table responsive on mobile */
.table-responsive {
    font-size: 0.875rem;
}
}
@media (max-width: 576px) {
.agent-table-container {
    max-height: calc(100vh - 400px);
}
}
.copy-link {
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.copy-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
}

/* Spin animation for refresh indicators */
.spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg);
}
to { transform: rotate(360deg);
}
}
