/**
 * Estilos base comunes para todas las resoluciones y temas
 */

/* Tipografía base */
body,
td,
th {
    font-family: Poppins, sans-serif;
    color: #484845;
}

body {
    background-color: #858585;
    background-image: var(--background-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

@media only screen and (max-width: 600px) {
    body {
        margin-left: 0%;
    }
}

/* Utilidades de texto */
.boldpagetitle {
    font-weight: bold;
}

.boldtitle {
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

/* Ocultar imágenes placeholder */
img[src="Seleccionar"],
img[src="Ninguno"],
img[src="0"],
img[src=""] {
    display: none;
}

/* Utilidades */
.mr-10 {
    margin-right: 0px;
}

.scala {
    transform: scale(1);
}

.grid {
    display: -webkit-flex;
    display: flex;
}

.fluid {
    flex: 1;
    padding: 20px;
}

.app-nav {
    justify-content: space-around;
    flex-direction: row;
}

.right {
    align-content: space-around;
}

.col-pad-top {
    padding-top: 5px;
}

.bg-list-row {
    background-color: #f6f6f6;
    margin-bottom: 2px;
}

.pad-bot {
    padding-bottom: 20px;
}

.row {
    flex-direction: row;
}

.img-list {
    display: contents;
    padding-left: 15px;
    padding-top: 10px;
}

/* UHD - ajustes base (sin duplicar font-size global) */
@media (min-width: 3840px) {
    .img-list {
        padding-left: 30px;
        padding-top: 20px;
    }
}

