.tomarEvidencia {
    width: 100%;
    max-width: 440px;
    margin: auto;
}

#photos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.photo-item {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    width: fit-content;
}

.photo-item img {
    max-width: 200px;
    height: auto;
    border-radius: 3px;
}

.photo-item button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.photo-item button:hover {
    background-color: rgba(200, 35, 51, 1);
}

.botonAgregar {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.contenedorFalla{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
}

.datosFalla {
    padding-left: 0px;
}