﻿#loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
}
#dropZone {
    width: 100%;
    min-width: 200px;
    max-width: 500px;
    min-height: 200px;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 2px dashed #ccc;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    text-align: center;
    cursor: pointer;
    background-color: #efefef;
}
    #dropZone img {
        max-width: 100px;
        max-height: 100px;
        width: 33%;
        height: auto;
        object-fit: cover;
    }

    #dropZone.dragging {
        border-color: #000;
        background-color: #f0f0f0;
    }

.grcontainer {
    display: grid;
    grid-template-columns: 65% 30%;
    gap: 10px; /* Espacio entre columnas */
    padding: 2px;
}

.grcolumnlf {
    padding: 2px;
    display: inline-grid;
    justify-content: center;
    align-items: center;     
    /*border: 1px solid #ccc;*/
}

.grcolumnr {
    padding: 2px;
    /*border: 1px solid #ccc;*/
}

.cameraModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.cameraModalContent {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width:480px;
    height:auto;
    text-align: center;
}

#displayImage1 {
    max-width: 50px;
    height:50px;
    max-height: 200px;
    margin:0 auto;
}
#displayImage {
    max-width: 100%;
    max-height: 200px;
}

.camera {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
}

#camera {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin:0 auto;
    margin-bottom: 15px;
}

.video {
    width:100%;
    height:auto;
    max-width:400px;
}

#photoResult {
    margin-top: 20px;
    margin-bottom: 20px;
}

    #photoResult img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border: 1px solid #ccc;
    }

.frmEditData {
    align-content: flex-start;
    padding: 15px;
}
.labelFrmContent {
    text-align: left;
}