﻿
.modal {
    display: none; /* Hide modal by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); /* Semi-transparent black background */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.share-icon {
    cursor: pointer;
}
/* Styles for the modal */
/* Modal content styles */
.modal-content {
    background-color: #fff;
    margin: 10% auto; /* Center the modal vertically and horizontally */
    padding: 20px;
    border-radius: 8px;
    max-width: 800px; /* Increase max-width to make modal wider */
    width: 90%; /* Ensure modal is responsive */
    position: relative;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); /* Optional: Add shadow for depth */
}

/* Airbnb specific modal content styles */
.airbnb-modal-content {
    text-align: center;
}

    .airbnb-modal-content h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

.circular-image {
    border-radius: 7%;
    width: 275px;
    height: 200px;
    object-fit: cover;
    margin: 20px auto;
}

.experience-title {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.btn-container {
    margin-top: 20px;
}

    .btn-container button {
        margin: 5px;
        padding: 10px 20px;
        font-size: 1em;
        background-color: #FE7241;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

        .btn-container button:hover {
            background-color: #FE7241;
        }

.favorited {
    fill: orangered; /* or any other color you prefer */
}


.card .share_icon {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    z-index:9;
}

.card .share_icon svg {
     width: 40px;
     height: 40px;
     padding: 5px;
}
