.placeholder{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background-color: #111;
    border-radius: 8px;
    margin:0 auto;
}


.spinner {
    border: 8px solid #f3f3f3; /* Cor de fundo */
    border-top: 8px solid #3498db; /* Cor da borda giratória */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-container{
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
     margin:0 auto;
    text-align:center;
    background-color:transparent;
    display : block;
}
.carregada{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Oculta a imagem até que esteja carregada */
    width:200px;
    height:150px;
    max-width:100%;
    max-height:100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius:15px;
    background-color:black;
}
