/* Emails Page Specific Styles */

/* Email specific styling */
.email-address {
    font-weight: bold;
    color: #17a2b8;
    background-color: #f0f9ff;
    border-radius: 4px;
    padding: 4px 8px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.email-address:hover {
    color: #138496;
    background-color: #e6f7ff;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* Status badge styling */
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-badge.used {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-badge.available {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Account info styling */
.account-info {
    font-size: 14px;
    line-height: 1.4;
}

.account-info strong {
    color: #17a2b8;
    font-weight: 600;
}

.account-id {
    color: #6c757d;
    font-size: 12px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background-color: #f8f9fa;
    padding: 2px 4px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 2px;
}

.no-account {
    color: #6c757d;
    font-style: italic;
}

/* Page specific buttons */
.btn-create {
    background: #17a2b8;
    color: white;
}

.btn-create:hover {
    background: #138496;
}

.btn-delete:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.btn-delete:disabled {
    background-color: #6c757d;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-delete:disabled:hover {
    background-color: #6c757d;
    transform: none;
    box-shadow: none;
}

.btn-primary {
    background: #17a2b8;
    color: white;
}

.btn-primary:hover {
    background: #138496;
}

/* Stats */
.stats {
    background: #d1ecf1;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Page specific table styles */
th {
    background-color: #17a2b8;
}

th:last-child {
    background-color: #17a2b8;
}

tr:hover td:last-child,
tr:hover {
    background-color: #d1ecf1;
}

/* Page specific modal size */
.modal-content {
    max-width: 500px;
}

/* Page specific form focus color */
.form-group input:focus {
    border-color: #17a2b8;
    box-shadow: 0 0 5px rgba(23,162,184,0.3);
}

/* Page specific spinner color */
.spinner {
    border-top: 4px solid #17a2b8;
}