/* CSS Document */

.dc-google-place-container {
    margin-bottom: 30px;
}

.dc-google-place-info {
    margin-bottom: 15px;
}

.dc-google-place-images {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 15px;
}

.dc-google-place-image-link {
    width: 25%;
    padding: 0 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.dc-layout-slider .dc-google-place-image-link {
    width: 100%;
}

.dc-layout-masonry .dc-google-place-image-link:nth-child(odd) {
    width: 60%;
}

.dc-layout-masonry .dc-google-place-image-link:nth-child(even) {
    width: 40%;
}

.dc-google-place-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    border-radius: 4px;
}

.dc-google-place-rating {
    display: inline-flex;
    align-items: center;
    margin: 5px 0;
}

.dc-google-place-stars {
    color: #FFC107;
    font-size: 20px;
    line-height: 1;
    margin-right: 5px;
}

.dc-star-full, .dc-star-half, .dc-star-empty {
    display: inline-block;
}

.dc-star-half {
    position: relative;
    overflow: hidden;
    width: 0.5em;
}

.dc-google-place-reviews-count {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.dc-google-place-powered-by {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.dc-google-place-booking-button {
    display: block;
    background-color: #336633;
    color: white;
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.dc-google-place-booking-button:hover {
    background-color: #264C26;
    color: white;
    text-decoration: none;
}

.dc-error {
    color: #D32F2F;
    padding: 10px;
    background-color: #FFEBEE;
    border-radius: 4px;
}

/* Responsive Anpassungen */
@media (max-width: 767px) {
    .dc-google-place-image-link {
        width: 50%;
    }
    
    .dc-layout-masonry .dc-google-place-image-link {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .dc-google-place-image-link {
        width: 50%;
    }
    
    .dc-layout-masonry .dc-google-place-image-link {
        width: 50%;
    }
}

/* Hotelname ausblenden */
.dc-google-place-info h3 {
    display: none;
}

/* Button-Textfarbe immer weiß */
.dc-google-place-booking-button {
   box-shadow:inset 0px 1px 0px 0px #f5978e;
	display: block;
    background-color: #ffcc00;
    color: black !important; /* !important hinzugefügt */
		border-radius:6px;
	border:1px solid #d02718;
    text-align: center;
    padding: 30px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.dc-google-place-booking-button:hover {
    background-color: #264C26;
    color: white !important; /* !important hinzugefügt */
    text-decoration: none;
}