/* =========================
   OUTPUT
========================= */

.password-output {
    display:flex;
    gap:10px;
    margin-top:15px;
}

.password-output input {
    flex:1;
    padding:14px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.08);
    background:#111;
    color:#fff;
    font-size:15px;
    outline:none;
}

/* =========================
   MODE BUTTONS
========================= */

.mode-buttons {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:15px;
}

.mode-btn {
    padding:10px 12px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    background:#1f1f1f;
    color:#fff;
}

.mode-btn.active {
    background:#4f46e5;
}

/* =========================
   ANALYTICS (AI SCORE)
========================= */

.analytics-box {
    margin-top:15px;
    padding:14px;
    border-radius:12px;
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    font-size:13px;
    line-height:1.8;
}

/* =========================
   BULK TABLE
========================= */

.bulk-table-wrapper {
    display:flex;
    flex-direction:column;
    height:420px;
    min-height:420px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    background:#111;
}

#bulkTable {
    width:100%;
    border-collapse:collapse;
    color:#e5e7eb;
    font-size:13px;
    table-layout:fixed;
}

#bulkTable thead {
    display:table;
    width:100%;
    table-layout:fixed;
}

#bulkTable tbody {
    display:block;
    overflow-y:auto;
    height:360px;
}

#bulkTable tbody tr {
    display:table;
    width:100%;
    table-layout:fixed;
}

#bulkTable thead th {
    position:sticky;
    top:0;
    background:#111;
    z-index:2;
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:10px;
}

#bulkTable td {
    padding:8px 10px;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

/* =========================
   HISTORY
========================= */

.history-list {
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
    max-height:400px;
    overflow:auto;
}

.history-item {
    padding:10px;
    border-radius:10px;
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    font-family:monospace;
    font-size:13px;
    word-break:break-all;
}

#progressBarContainer {
    height: 20px;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

#progressBarContainer.show {
    opacity: 1;
}