/* ZÁKLADNÝ ŠTÝL STRÁNKY */
.chart-container { position: relative; }
.ban {
    background-color: #53fc18; color: black; padding: 5px 10px;
    position: absolute; top: -20px; right: 10px; font-weight: bold; border: 3px solid black;
}
.boartag {
    background-color: #000; color: #fff; padding: 3px 8px; margin: 2px;
    display: inline-block; cursor: pointer; transition: 0.2s; border-radius: 4px;
}
.boartag:hover { background-color: #53fc18; color: #000; }

/* MODÁLNE OKNÁ */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.85);
    z-index: 9999; justify-content: center; align-items: center;
}
.modal-content {
    background: #fff; color: #000; padding: 25px; border-radius: 15px;
    text-align: center; max-width: 800px; width: 90%; border: 5px solid #000;
}
.copy-area {
    background: #f0f0f0; border: 2px dashed #333; padding: 15px;
    margin: 15px 0; font-size: 1.3rem; font-weight: bold; cursor: pointer;
    word-break: break-word;
}
.copy-area:hover { background: #e8e8e8; }
.copy-area:active { background: #53fc18; }
.close-btn {
    cursor: pointer; font-weight: bold; text-transform: uppercase;
    background: #000; color: #fff; padding: 8px 20px; display: inline-block;
    margin-top: 10px;
}
.status-msg { font-size: 0.9rem; color: #53fc18; font-weight: bold; margin-top: 5px; height: 20px; }
/* ADMINISTRÁCIA ZOZNAMU (viditeľné len pre prihláseného Gurru05) */
.divocaci-admin-bar {
    text-align: center;
    padding-bottom: 20px;
}
.divocak-admin-actions {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
    display: flex;
    gap: 8px;
    justify-content: center;
}
.divocak-edit-btn, .divocak-delete-btn {
    font-size: 12px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    transition: 0.2s;
}
.divocak-edit-btn:hover { background: #53fc18; }
.divocak-delete-btn:hover { background: #c0392b; border-color: #c0392b; color: #fff; }
.divocak-delete-form { margin: 0; display: inline; }

/* ADMINISTRÁCIA SPAM TAGOV (viditeľné len pre prihláseného Gurru05) */
.spam-admin-panel {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}
.spam-admin-panel h3 { margin-top: 0; }
.spam-admin-table-wrap { overflow-x: auto; }
.spam-admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.spam-admin-table th, .spam-admin-table td {
    text-align: left;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    vertical-align: top;
}
.spam-admin-table th { background: #000; color: #fff; }
.spam-preview { color: #555; max-width: 320px; }
.spam-admin-actions { white-space: nowrap; display: flex; gap: 6px; }
