
/* Add to your CSS */
.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}
.badge {
    font-size: 0.85em;
    padding: 0.5em 0.75em;
}
.search-filter-container {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Flex Layout for table */
.table-container {
    width: 100%;
    margin-top: 20px;
}

.table-header {
    display: flex;
    background-color: #f8f9fa;
    font-weight: bold;
    border-radius: 12px;
    padding: 8px 24px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.table-cell {
    flex: 1;
    padding: 8px 15px;
    text-align: left;
    vertical-align: middle;
    display: flex;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.table-row {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #E9ECF2;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 8px 24px;
    margin-bottom: 20px;
    cursor: pointer;
}

/* Give the last column more space */
.table-cell:last-child {
  flex: 2;
}




/* styles.css */

/* Style for unread emails */
.unread-email {
font-weight: bold;
background-color: #f9f9f9;
}

/* Style for read emails */
.read-email {
font-weight: normal;
background-color: #ffffff;
}

/* Style for email links */
.unread-email a.email-link {
color: #000;
}

.read-email a.email-link {
color: #6c757d;
}

/* Optional: Adjust the cursor to indicate clickable rows */
.email-row {
cursor: pointer;
}

/* Style for the email icons */
.email-row .fa-envelope,
.email-row .fa-envelope-open {
color: #007bff;
}


@media (max-width: 576px) {
    .table-header,
    .table-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .table-cell {
        width: 100%;
        margin-bottom: 1rem;
        text-align: left;
        justify-content: flex-start;
    }
}

  
/* ...existing code... */

.settings-section {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.bg-gradient-primary {
  background: linear-gradient(45deg, #1a237e, #0d47a1);
}

.form-control:focus {
  border-color: #1a237e;
  box-shadow: 0 0 0 0.25rem rgba(26,35,126,0.25);
}

.form-check-input:checked {
  background-color: #1a237e;
  border-color: #1a237e;
}

/* Brand active tab */
.tabs a.active { color: #fd9644; border-bottom-color: #fd9644; }
.btn.btn-save { background: #fd9644; color: #fff; }



/* Ensure General tab cards match Warm-Up styling */
#general .settings-section,
#general .card,
#general .card-body,
#general .form-control,
#general .form-check-input,
#general .form-select {
  /* nothing special required; reuse global warmup styles */
}

/* Optional: match focus/brand look on General tab, same as Warm-Up */
#general .form-control:focus,
#general .form-select:focus {
  border-color: #1a237e;
  box-shadow: 0 0 0 0.25rem rgba(26,35,126,0.25);
}
#general .form-check-input:checked {
  background-color: #1a237e;
  border-color: #1a237e
}