#dashCard {
    background: linear-gradient(145deg, #1a1a1f, #121216);
    border-radius: 20px;
    padding: 32px;
    width: 520px;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.15),
                inset 0 0 10px rgba(255, 255, 255, 0.02);
}

#dashHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

#dashHeader h2 {
    color: #a78bfa;
    margin: 0;
}

#keyList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.keyRow {
    background: #0f0f14;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: box-shadow 0.2s;
}

.keyRow:hover {
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.keyRowMain {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.keyRowText {
    font-family: monospace;
    font-size: 0.78rem;
    color: #e9d5ff;
    letter-spacing: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.keyBadge {
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    font-weight: bold;
}

.badge-active {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-expired {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.keyRowActions {
    display: flex;
    gap: 6px;
}

.btn-small {
    padding: 5px 10px;
    font-size: 0.72rem;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.15s;
}

.btn-small:hover {
    transform: translateY(-1px);
}

.btn-accent {
    background: linear-gradient(135deg, #7c3aed, #4c1d95);
    color: white;
}

.btn-copy {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.25);
}

.btn-check {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.btn-del {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

#emptyMsg {
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
    padding: 30px 0;
}

#emptyMsg a {
    color: #a78bfa;
    text-decoration: none;
}

