﻿/* =====================================================================
   HASHSET BLUEPRINT
   ===================================================================== */
.hashset-blueprint-board {
    width: 100%;
    padding: 6px 10px;
    margin: 8px 0;
    box-sizing: border-box;
    background-color: #0b2b24;
    background-image: linear-gradient(rgba(74, 222, 128, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 222, 128, 0.04) 1px, transparent 1px);
    background-size: 15px 15px;
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-left: 5px solid #22c55e;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    min-height: 0;
    height: fit-content;
}
.hashset-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.08);
}

.hashset-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00f2fe;
}

.hashset-buckets {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px;
}

.hashset-item {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #4b5563, #111827);
    border: 3px solid #94a3b8;
    color: white;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: inset 0 3px 8px rgba(255,255,255,0.25), 0 5px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

    .hashset-item.active {
        border-color: #00f2fe;
        box-shadow: 0 0 18px rgba(0,242,254,0.8), inset 0 3px 8px rgba(255,255,255,0.35);
        transform: translateY(-5px);
    }

    .hashset-item.exists {
        border-color: #22c55e;
        box-shadow: 0 0 18px rgba(34,197,94,0.8);
    }

    .hashset-item.missing {
        opacity: 0.35;
        border-color: #ef4444;
        box-shadow: 0 0 15px rgba(239,68,68,0.7);
    }

.hashset-lookup {
    margin-top: 14px;
    padding: 12px;
    background: rgba(15,23,42,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
}

.hashset-lookup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-family: 'Fira Code', Consolas, monospace;
}

.hashset-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.hashset-value {
    color: #f59e0b;
    font-weight: 800;
}

.hashset-result {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0,242,254,0.08);
    color: #4ade80;
    font-size: 1.1rem;
    font-weight: 900;
    text-align: center;
}

.hashset-pointer {
    text-align: center;
    color: #2d7cff;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(45,124,255,0.8);
}

.hashset-vault {
    width: 100%;
    padding: 20px;
    margin: 16px 0;
    background: radial-gradient(circle at center, #172554, #020617);
    border: 2px solid #38bdf8;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(56,189,248,0.35);
}

.hashset-vault-title {
    color: #7dd3fc;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.hashset-storage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 10px;
    min-height: 60px;
}

.hashset-lookup-panel {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0,0,0,.35);
    border-radius: 10px;
    color: white;
    text-align: center;
}

.hashset-query {
    color: #facc15;
    font-size: 1.1rem;
    font-weight: 900;
}

@media(max-width:768px) {
    .hashset-buckets {
        justify-content: center;
    }

    .hashset-item {
        width: 55px;
        height: 55px;
    }
}
