﻿.logo-container {
    width: 150px;
    height: 150px;
    display: flex; /* activar flexbox */
    align-items: center; /* centrar vertical */
    justify-content: center; /* centrar horizontal */
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
    box-shadow: -5px 6px 10px black;
}

.logo-placeholder,
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.valueamenity {
  font-size: 28px;
  line-height: 1;
  margin-left: 0.5rem;
}

.logo-placeholder {
    background-color: #f0f0f0;
}

.record-hover {
    transition: background-color 0.2s;
}

    .record-hover:hover {
        background-color: rgba(0, 123, 255, 0.2);
        cursor: pointer;
    }

/* Si deseas agregar margen y espaciado consistente */
.margin-space-20 {
    margin: 20px;
}

.amenity-notification {
    padding: 16px;
    margin: 16px 0;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
}
