
/* New CSS */

.popup-modal {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    min-width: 600px;
    position: fixed;
    box-sizing: border-box;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    height: auto;
    align-items: center;
    background-image: url('https://www.read123.co.uk/wp-content/uploads/2024/05/6013a709-c3a4-49ae-8071-7c503b434d58-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    box-shadow: 0 0 4px 0 rgba(216, 216, 216, 0.4);
}

.popup-content {
    display: flex;
    flex-wrap: wrap;
    width:100%;
    height: auto;
}

.left {
    flex: 0 0 auto;
    width: 18%;
}

.right {
    flex-grow: 1;
    width: 82%;
    box-sizing: border-box;
    padding: 10px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
    color: black;
}

.name-location-stars {
    width: 95%;
    color: rgb(12, 12, 12);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-top: 5px;
}

.name {
    font-weight: 600;
}

.location {
    font-weight: 600;
}

.review {
    margin-top: 5px;
}

.customhref {
    text-decoration: none;
    color: rgb(12, 12, 12);
}

.customhref:hover {
    color: rgb(12, 12, 12);
}

.star-icons-margin {
    margin-left: 5px;
    font-size: 25px;
}

.star-icon {
    color: #ffc35c;
}

.content {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.popup-review {
    margin-top: -20px;
    font-size: 14px;
    font-weight: 600 !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    max-width: 100%;
}

.popup-image {
    max-width: 100%;
    height: 100%;
    display: block;
    width: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: 1px solid rgb(221, 221, 221);
}

/* Media query for responsiveness */
/* Mobile Styles */
@media only screen and (max-width: 600px) {
    .popup-modal {
        max-width: calc(100% - 20px);
        /* Adjust max-width for smaller screens */
        left: 10px;
        /* Adjust positioning */
        right: 10px;
        /* Adjust positioning */
        bottom: 10px;
        /* Adjust positioning */
        height: auto;
        /* Let height adjust dynamically */
        align-items: stretch;
        /* Ensure items stretch to fill container */
        min-width: auto;
    }

    .popup-content {
        flex-direction: row;
        width: 100%;
    }

    .left {
        width: 18%;
        /* Take full width on smaller screens */
        max-width: 18%;
        /* Adjust max-width */
        height: auto;
    }

    
    .right {
        width: 82%;
        max-width: 82%;
    }

    .close-button {
        top: 5px;        
        right: 5px;        
        font-size: 20px;
    }

    .name-location-stars {
        width: 100%;
        font-size: 16px;
    }

    .star-icons-margin{
        margin-left: 0px;
        font-size: 20px;
    }

    .popup-review {
        margin-top: 0;
        font-size: 14px;
    }

    .popup-image {
        max-width: 100%;
        height: 100%;
        border-top-left-radius:5px;
        border-bottom-left-radius: 5px;
    }

    .review{
		margin-top:-5px;
	}
}