/* Reusable Dokumint UI components */

.dk-panel {
    background: var(--bg-panel);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dk-input {
    width: 100%;
    padding: 10px 12px;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: var(--radius);
    color: var(--text);
    margin-bottom: 16px;
}

.dk-button {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    border: none;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

.dk-button:hover {
    background: var(--accent-hover);
}

.icon-picker-tile img, .icon-picker-tile svg {
    width: 28px;
    height: 28px;
    filter: invert(85%) brightness(1.3);
    opacity: 0.9;
    transition: opacity 0.15s ease;
}