:root {
    --bg-main: #0f172a;        
    --bg-card: #1e293b;        
    --accent-primary: #f97316; 
    --text-main: #f8fafc;      
    --text-dim: #94a3b8;       
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg-main); 
    color: var(--text-main); 
    overflow-x: hidden;
}

.vault-card { 
    background-color: var(--bg-card); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 12px; 
    overflow: hidden; 
}

.code-header { 
    background-color: var(--accent-primary); 
    color: #000; 
    padding: 10px 15px; 
    font-weight: 900; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.block-all-btn {
    opacity: 0.5;
    transition: all 0.2s;
    cursor: pointer;
    margin-right: 8px;
    font-size: 14px;
}

.block-all-btn:hover {
    opacity: 1;
    transform: scale(1.2);
}

.scroll-container { 
    height: 350px; 
    overflow-y: auto; 
    background-color: rgba(0,0,0,0.2); 
}

.code-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 15px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

.btn-primary { 
    background-color: var(--accent-primary); 
    color: white; 
    font-weight: bold; 
    transition: all 0.2s; 
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

#urlPanel { 
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 50; 
}

#urlPanel.open { transform: translateX(0); }

.keyword-tag {
    background: #334155;
    color: #f8fafc;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.keyword-remove { color: #94a3b8; cursor: pointer; font-weight: bold; }
.keyword-remove:hover { color: #ef4444; }

.url-list-item { 
    font-size: 11px; 
    padding: 10px; 
    border-bottom: 1px solid #334155; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }
