/* Admin theme colors */
:root {
    --hmt-primary: #0071e3;
    --hmt-primary-hover: #0077ED;
    --hmt-light-blue: #f5f9fc;
    --hmt-border: #e2e8f0;
}

/* Admin styles */
.hmt-admin-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.hmt-admin-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hmt-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hmt-stat-box {
    background: var(--hmt-light-blue);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.hmt-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--hmt-primary);
    margin-top: 0.5rem;
}

.hmt-settings-section {
    background: #fff;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 782px) {
    .hmt-admin-container {
        grid-template-columns: 1fr;
    }
    
    .hmt-stats-grid {
        grid-template-columns: 1fr;
    }
}