/* ─── Dobyvezu – Zoznam prihlásených (Frontend) ─── */

.dbv-participants-wrap {
    margin: 1.5em 0;
    font-family: inherit;
}

.dbv-participants-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin: 0 0 1em;
}

.dbv-participants-title {
    font-size: 1.6em;
    font-weight: 700;
    margin: 0;
    color: #1a1a2e;
}

.dbv-participants-count {
    font-size: 0.95em;
    color: #555;
    margin: 0;
}

.dbv-participants-count strong {
    color: #d32f2f;
    font-size: 1.2em;
}

/* ─── Vyhľadávanie ─── */
.dbv-participants-search-wrap {
    margin-bottom: 1em;
}

.dbv-participants-search {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.dbv-participants-search:focus {
    border-color: #d32f2f;
}

/* ─── Skupiny ─── */
.dbv-participants-group-title {
    font-size: 1.2em;
    font-weight: 700;
    margin: 1.5em 0 0.5em;
    padding: 8px 14px;
    background: #f5f5f5;
    border-left: 4px solid #d32f2f;
    border-radius: 0 6px 6px 0;
    color: #1a1a2e;
}

.dbv-participants-group-count {
    font-weight: 400;
    color: #888;
    font-size: 0.85em;
}

/* ─── Tabuľka ─── */
.dbv-participants-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1em;
}

.dbv-participants-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    line-height: 1.4;
}

.dbv-participants-table thead th {
    background: #1a1a2e;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    padding: 10px 12px;
    text-align: left;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1;
}

.dbv-participants-table tbody tr {
    transition: background 0.15s;
}

.dbv-participants-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.dbv-participants-table tbody tr:hover {
    background: #fff3f3;
}

.dbv-participants-table tbody tr.dbv-row-hidden {
    display: none;
}

.dbv-participants-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.dbv-participants-table .dbv-col-num {
    width: 40px;
    text-align: center;
    font-weight: 700;
    color: #bbb;
    font-size: 0.85em;
}

/* ─── Prázdny stav ─── */
.dbv-participants-empty {
    padding: 30px;
    text-align: center;
    color: #999;
    font-style: italic;
    background: #fafafa;
    border-radius: 8px;
    border: 2px dashed #e0e0e0;
}

/* ─── Footer ─── */
.dbv-participants-updated {
    font-size: 0.8em;
    color: #bbb;
    text-align: right;
    margin-top: 0.5em;
}

/* ─── Responzívne: mobil ─── */
@media (max-width: 768px) {
    .dbv-participants-table thead {
        display: none;
    }

    .dbv-participants-table tbody tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 10px;
        background: #fff;
    }

    .dbv-participants-table tbody tr:nth-child(even) {
        background: #fff;
    }

    .dbv-participants-table td {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
        border-bottom: 1px dotted #eee;
    }

    .dbv-participants-table td:last-child {
        border-bottom: none;
    }

    .dbv-participants-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #666;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .dbv-participants-table td.dbv-col-num {
        display: none;
    }
}

/* ─── Animácia pri filtrovaní ─── */
.dbv-participants-table tbody tr {
    animation: dbvFadeIn 0.2s ease;
}

@keyframes dbvFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
