/* --- Barra de Progresso de Estoque --- */
.products-progress-container {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    margin-top: 16px; /* Adicionado margem superior */
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.progress-bar-wrapper {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #10b981;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

/* --- Ajustes de Layout da Toolbar --- */
.toolbar-products {
    gap: 20px !important;
}

.search-block {
    flex: 1;
}
