/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #4CAF50;
    margin-top: 20px;
    font-size: 2.5rem;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input, textarea, select {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.buttons {
    margin-top: 20px;
    text-align: center;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.btn-vender {
    background-color: #4CAF50;
}

.btn-baja {
    background-color: #f44336;
}

.btn-trasladar {
    background-color: #2196F3;
}

button:hover {
    opacity: 0.8;
}

/* Products list styles */
.productos-container {
    width: 90%;
    margin: 0 auto;
}

.productos-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.producto {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.producto:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.producto-imagen img {
    border-radius: 5px;
}

.producto-info {
    padding: 15px;
}

.producto-info h2 {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.producto-info h5 {
    font-size: 1.25rem;
    color: #333;
}

.producto-info p {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
}

.producto-info p strong {
    color: #333;
}

.producto-info p .precio {
    font-weight: bold;
    color: #4CAF50;
}

@media (max-width: 768px) {
    .productos-lista {
        flex-direction: column;
        align-items: center;
    }

    .producto {
        width: 90%;
    }
}

/* Card styles */
.card {
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-title {
    font-weight: bold;
    color: #333;
}

.card-text {
    color: #555;
}

/* Button styles */
.btn {
    background-color: #4CAF50;
    border: none;
}

.btn:hover {
    background-color: #45a049;
}


/* Estilos de los botones de acción */
button {
    min-width: 100px;
}

button:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}