/* =========================
   UUID OUTPUT (same as password tool)
========================= */

.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;
}

/* =========================
   SETTINGS (reused layout)
========================= */

.settings-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:15px;
}

.setting-card {
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    padding:12px;
}

.setting-card h3 {
    margin-bottom:10px;
    font-size:14px;
}

.setting-card label {
    display:flex;
    align-items:center;
    gap:10px;
    padding:6px 8px;
    border-radius:8px;
    font-size:14px;
    cursor:pointer;
}

.setting-card label:hover {
    background: rgba(255,255,255,0.04);
}

/* =========================
   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 (repurposed for UUID info)
========================= */

.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 (same system)
========================= */

.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;
}

/* ==========================================
        Conversion Tables
        ========================================== */

        .conversion-table{
            margin:40px 0;
            overflow-x:auto;
            border-radius:18px;
            border:1px solid rgba(255,255,255,.08);
            background:rgba(255,255,255,.03);
            backdrop-filter:blur(14px);
        }

        .conversion-grid{
            width:100%;
            border-collapse:collapse;
            min-width:520px;
        }

        .conversion-grid thead{
            background:linear-gradient(
                90deg,
                #6366f1,
                #8b5cf6
            );
        }

        .conversion-grid th{
            color:#fff;
            font-size:16px;
            font-weight:700;
            padding:18px 24px;
            text-align:left;
        }

        .conversion-grid td{
            padding:18px 24px;
            border-bottom:1px solid rgba(255,255,255,.06);
            font-size:16px;
            color:#e5e7eb;
        }

        .conversion-grid tbody tr{
            transition:.25s;
        }

        .conversion-grid tbody tr:hover{
            background:rgba(99,102,241,.12);
        }

        .conversion-grid tbody tr:last-child td{
            border-bottom:none;
        }

        .conversion-grid td:first-child{
            font-weight:700;
            color:#60a5fa;
            font-size:17px;
        }

        .conversion-grid td:last-child{
            font-weight:700;
            color:#4ade80;
            font-size:17px;
        }

