*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}

header{
    background-color: black;
    text-align: center;
    padding: 1rem 0;
}


.nav-item {
    margin-right: 15px;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;

}

.navbar-nav .nav-link{
    background-color: black;
    color: white;
    font-size: 1.5rem;
}

body{
    background-image: url(../asset/stock-1863880_1920.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: aliceblue;;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

footer {
    background-color: black;
    color: #eef1f0;
    text-align: center;
    font-size: 1rem;
    width: 100%;
    overflow: hidden;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
p {
    text-align: center;
    margin: auto;
    padding: auto;
    width: auto;
}
footer svg {
    list-style-type: none;
    width: auto;
    display: inline block;
    text-decoration: none;
    color: #eef1f0;
}

header h1{
    font-size: 3rem;
    text-align: center;
}

main h2{
    font-size: 2rem;
    margin-left: 7rem;
}

main h3{
    font-size: 1rem;
}

main p{
    text-align: left;
}

/* .form-group {
    padding: 10px;
} */


main {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background-color: black;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column; /* Alinea los campos verticalmente */
    align-items: center; /* Centra horizontalmente */
}

.alert-container {
    width: 20rem;
    /* display: flex; */
    justify-content: center;
    /* align-items: center;
    height: 100vh; */
}


.btnejecucion {
    padding: 1rem;
    width: 10rem;
    display: inline-block;
    align-items: center;
    justify-content: center;
}


.btnAgendar {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    margin-left: auto;
    margin-right: auto;
    width: 10rem;
}

#formulario_agenda {
    background-color: black;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
}

input[type="text"],
input[type="date"],
input[type="time"],
input[type="email"], 
button [type= "submit"],
button [type ="button"] {
    margin-bottom: 10px; /* Espacio entre los campos de entrada */
}

.table {
    background-color: black;
    color: white;
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

.table th, .table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.table thead {
    background-color: #f2f2f2;
}

.table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table tbody tr:hover {
    background-color: #f1f1f1;
}


.col-moneda {
            width: 33%;
            text-align: center;
        }
.col-precio-compra, .col-precio-venta {
            width: 33%;
            text-align: center;
        }

        
table {
            width: 100%;
        }

