@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #c48d7f;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.ocultar {
    visibility: hidden;
    display: none;
}

.custom-btn {
    background-color: #352922;
    color: #84635C;
    box-shadow: 10px 10px 9px -7px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 9px -7px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 9px -7px rgba(0, 0, 0, 0.75);
    border-radius: 4px;
}

.custom-btn:hover {
    background-color: rgba(255, 255, 255, 0.205);
    border: 2px solid #352922;
    color: #352922;
}

.custom-btn:focus {
    background-color: rgba(255, 255, 255, 0.205);
    border: 2px solid #352922;
    color: #352922;
}

.fs-custom div {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.fs-custom div h1 {
    font-size: 80px;
    color: #332117;
    font-weight: 500;
    margin-bottom: 20px;
    width: 80%;
}

footer {
    background-color: black;
}

.img a {
    color: inherit;
    text-decoration: none;
}

.form-select {
    background-color: rgba(107, 78, 73, 0.5);
    border: 1px solid #352922;
    color: #352922;
}

input.form-control {
    background-color: rgba(107, 78, 73, 0.5);
    border: 1px solid #352922;
    color: #352922;
    transition: background-color 0.3s ease;
}

input.form-control:focus {
    background-color: rgba(255, 255, 255, 0.548);
}


button.volver-menu {
    display: block;
    margin: auto;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mensaje-validacion {
    text-align: center;
    position: fixed;
    top: 10%;
    border-radius: 8px;
    width: 400px;
    padding: 10px;
    background-color: white;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000;
}

.rojo {
    color: red;
}

.verde {
    color: green;
}


.table-responsive {
    max-height: 400px;
    overflow-y: auto;
    border-radius: 8px;
}

.categoria {
    background-color:  #353532b0;
    color: white;
}

.total {
background-color: rgba(60, 75, 90, 0.699);
}

#divisas {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    background-color: rgba(107, 78, 73, 0.5);
    color: #fff;
    flex-direction: row; /* Añadida esta propiedad */
}

#divisas div {
    background-color: #352922;
    padding: 10px;
    border-radius: 5px;
    margin: 0 5px;
    text-align: center;
}

#divisas div:hover {
    cursor: pointer;
    color: #352922;
    background-color: rgba(255, 255, 255, 0.205);
    border: 2px solid #352922;
}

#analisisCategorias {
    width: 100%;
}

#imgApp {
    display: none;
    visibility: hidden;
}

section, .safe-area {
    padding-left:1em;
    padding-right:1em;
}

@supports(padding:max(0px)) {
	section {
		padding-left:  max(1em, env(safe-area-inset-left));
		padding-right: max(1em, env(safe-area-inset-right));
	}
}
