.navbar-brand img {
    vertical-align: middle; /* Centra verticalmente la imagen dentro del navbar */
    margin-right: 10px; /* Ajusta el margen derecho para separar la imagen de otros elementos */
}

.bold-username {
    font-weight: bold;
    color: black;
}

.card-img-container {
    width: 100%;
    height: 200px; /* Ajusta la altura según necesites */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen se ajuste al contenedor */
    object-position: center; /* Centra la imagen */
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-view {
    display: none;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.action-buttons .btn-group {
    display: flex;
    gap: 10px;
}
/* Estilos del footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    /* Asegura que el footer se mantenga pegado al fondo */
    width: 100%;
    position: relative;
    bottom: 0;
}

.responsive-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Escala la imagen correctamente */
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Container principal que envuelve el contenido */
.container {
    flex: 1; /* Empuja el footer hacia abajo cuando el contenido es corto */
}

/* Footer */

