html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-color: #bbd9ff;
  margin: 0;
  padding: 0;
}

.header-spacer {
  height: 28px; /* Adjust as needed for separation */
  background: transparent;
}

header {
    /* keep your existing styles */
    background-color: #f0f0f0;
    border-bottom: 1px solid #d8d8d8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    z-index: 10;
}


/* Overlay for a shadow effect on the background */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4); /* Adjust opacity if needed */
  z-index: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(30,30,50,0.07);
    padding: 36px 36px 32px 36px;
    min-height: 320px;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #444;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 20px;
}

table th {
    background-color: #007bff;
    color: white;
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid #0056b3;
}

table td {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
}

table tr:hover {
    background-color: #f1f7ff;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Base button style */
.btn {
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Primary (Edit Account) */
.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Warning (Archive) */
.btn-warning {
    background-color: #ffc107;
    color: #000;
}

.btn-warning:hover {
    background-color: #e0a800;
}

/* Danger (Delete) */
.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}


