﻿
.dash-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    padding: 20px 20px 15px 20px;
    color: #fff;
    min-height: 110px;
    margin-bottom: 16px;
}

.dash-card .dash-count {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
}

.dash-card .dash-label {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.95;
}

.dash-card .dash-watermark {
    position: absolute;
    right: 15px;
    bottom: 5px;
    font-size: 5rem;
    opacity: 0.25;
    line-height: 1;
    pointer-events: none;
}

.dash-bg-aqua {
    background-color: #00c0ef;
}

.dash-bg-green {
    background-color: #28a745;
}

.dash-bg-yellow {
    background-color: #f39c12;
}

.dash-bg-red {
    background-color: #dc3545;
}

/* Panel boxes */
.dash-panel {
    border: 1px solid #e0e0e0;
    border-top: 3px solid #e74c3c;
    border-radius: 3px;
    background: #fff;
    margin-bottom: 24px;
}

.dash-panel-header {
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Member grid */
.member-item {
    text-align: center;
    padding: 10px 6px;
}

.member-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
    display: block;
    margin: 0 auto 6px;
}

.member-avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 0.55rem;
    color: #666;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    flex-direction: column;
}

.member-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1px;
}

.member-date {
    font-size: 0.75rem;
    color: #888;
}


