.table-card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(18, 101, 196, 0.1);
    overflow: hidden;
}

/* Hover en filas */
tbody tr:hover {
    background-color: #f1f1f1;
    /* transition: background 0.3s; */
}

/* Botones de acciones */
.btn-actions {
    display: flex;
    gap: 10px;
}

.product-card {
    width: 150px;
    height: 150px;  /* Altura fija */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    text-align: center;
    cursor: pointer;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.product-body {
    padding: 2px;
    text-align: center;
}

.product-title {
    font-size: 11px;
    font-weight: bold;
    color: #333;
}

.product-description {
    font-size: 12px;
    color: #777;
}

 /* Botón estilizado */
 .btn-buy {
    background-color: #195aaf;
    color: white;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-buy:hover {
    background-color: #428de4;
}

/* Funciones para formularios estilizados*/
.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
.input-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-gradiente_estilo {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 10px;
    color: white;
    border: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, #ff6f61, #ffbc42); /* Degradado de color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* transition: background 0.3s ease, box-shadow 0.3s ease; */
}

.btn-gradiente_estilo:hover {
    background-image: linear-gradient(45deg, #ffbc42, #ff6f61); /* Cambio de dirección en el hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-gradiente_estilo:focus {
    outline: none;
}

.btn-gradiente_estilo_azul {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: white;
    border: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, #042e7c, #1b69c2); /* Degradado de color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* transition: background 0.3s ease, box-shadow 0.3s ease; */
}

/* Color blanco para filas impares */
table.dataTable tbody tr:nth-child(odd) {
  background-color: #ffffff; /* blanco */
}

/* Color crema claro para filas pares */
table.dataTable tbody tr:nth-child(even) {
  background-color: #f7f4eb; /* crema claro */
}

/* Opcional: cambiar color al pasar el mouse */
table.dataTable tbody tr:hover {
  background-color: #f7f4eb; /* crema más intensa al pasar el mouse */
}
