.custom-input {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 0.95rem;
    color: #374151;
    transition: all 0.2s;
}

.custom-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.btn-action {
    width: 46px;
    height: 46px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-action:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #1f2937;
}

.btn-delete:hover {
    background-color: #fef2f2;
    border-color: #ef4444;
    color: #ef4444;
}

.list-row {
    animation: slideDown 0.3s ease-out;
    margin-bottom: 16px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}