﻿/* =========== Google Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");

.boton-Camara {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.boton-Camara button {
    width: 60%;
    margin: 40px;
    padding: 9px;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: #FF6600;
    color: #fff; /* Cambia el color del texto a blanco para que sea visible en el fondo oscuro */
    cursor: pointer; /* Cambia el cursor a un puntero cuando se pasa por encima del botón */
    transition: all 0.3s ease;
    font-size: 1em;
}

.boton-Cancelar .boton-atras-Cancelar {
    background-color: #fff;
    color: #000000;
    border: 2px solid #808080; /* Gris oscuro */
    transition: all 0.3s ease; /* Transición suave para el hover */
}

    .boton-Cancelar .boton-atras-Cancelar:hover {
        background-color: #f2f2f2;
    }

.boton-Cancelar {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.boton-Cancelar button {
    width: 60%;
    margin: 40px;
    padding: 9px;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: #FF6600;
    color: #fff; /* Cambia el color del texto a blanco para que sea visible en el fondo oscuro */
    cursor: pointer; /* Cambia el cursor a un puntero cuando se pasa por encima del botón */
    transition: all 0.3s ease;
    font-size: 1em;
}

.boton-Cancelar button:hover {
    background-color: #FF3300; 
}

.boton-CerrarModal {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;

}

    .boton-CerrarModal button {
        width: 60%;
        margin-right: 40px;
        padding: 9px;
        border-radius: 10px;
        border: none;
        outline: none;
        background-color: #FF6600;
        color: #fff; 
        cursor: pointer; 
        transition: all 0.3s ease;
        font-size: 1em;
    }
