.tabs {
    display: flex;
    gap: 8px;
    margin: 12px 0 20px
}

.tab {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #1a1f24;
    background: #0f1216;
    color: #eaf2f8;
    cursor: pointer
}

.tab.active {
    outline: 2px solid #00ffcc
}

.panel {
    display: none
}

.panel.active {
    display: block
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 10px 0 18px
}

.grid label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #9aa4ad
}

.grid input {
    margin-top: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #1f252b;
    background: #0f1216;
    color: #eaf2f8
}

.row {
    display: flex;
    gap: 8px;
    align-items: center
}

button {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #1a1f24;
    background: #00ffcc;
    color: #0b0c10;
    font-weight: 700;
    cursor: pointer
}

button.ghost {
    background: transparent;
    color: #eaf2f8
}

.list {
    display: grid;
    gap: 8px;
    margin-top: 8px
}

.card {
    border: 1px solid #1a1f24;
    background: #0f1216;
    border-radius: 14px;
    padding: 12px
}

.card h3 {
    margin: 0 0 6px
}

.card small {
    color: #9aa4ad
}

.card .actions {
    margin-top: 8px;
    display: flex;
    gap: 8px
}

.toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: #0f1216;
    border: 1px solid #1a1f24;
    color: #eaf2f8;
    padding: 10px 12px;
    border-radius: 12px
}