/* Mercury Theme Styles */
.mercury-root {
    display: flex;
    min-height: 100vh;
}

.mercury-content {
    flex: 1;
    padding: 2rem;
    background: #f9fafb;
}

/* Services Section Styles */
.services-section {
    margin-bottom: 2rem;
}

.services-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s;
}

.service-item:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.service-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-name a {
    color: inherit;
    text-decoration: none;
}

.service-status {
    margin-bottom: 0.75rem;
}

.service-domain {
    margin-bottom: 0.75rem;
}

.service-domain a {
    color: #2563eb;
    text-decoration: none;
}

.service-next-due {
    color: #6b7280;
    font-size: 0.875rem;
}

.label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.label-active {
    background: #dcfce7;
    color: #166534;
}

.label-pending {
    background: #fef3c7;
    color: #92400e;
}

.label-suspended {
    background: #fee2e2;
    color: #991b1b;
} 