body {
    margin: 0;
    padding: 0;
    padding-top: 50px;
    color: #3a2a20;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: Verdana, Tahoma, sans-serif;
    background: linear-gradient(130deg, #F8C8D8 35%, #FFFBDE 35%);
    background-size: 110%;
    background-color: fixed;
    background-position: center;
}

header {
    width: 95%;
    max-width: 900px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(240, 240, 240);
}

.share-button svg {
    margin-left: 12px;
    margin-top: 10px;
    color: rgb(0, 0, 0);
}

.container {
    margin-top: 250px;
    width: 91%;
    max-width: 580px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 25px;
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    color: black;
}

.tile,
.tile-booking {
    width: 100%;
    background-color: #F8C8D8;
    margin: 7px;
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
}

.tile:hover,
.tile-booking:hover {
    transition: cubic-bezier(.07, 1.41, .82, 1.41) 0.2s;
    transform: scale(1.02);
}

.tile-share-button {
    margin: 8px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: white;
}

.tile-share-button svg {
    margin-left: 12px;
    margin-top: 10px;
}


.image-container {
    height: 169px;
    width: 169px;
    border-radius: 50%;
    overflow: hidden;
}

.image-container img {
    height: 100%;
}

.icon {
    margin: 4px 8px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon svg,
.icon img {
    width: 32px;
    height: 32px;
}

.custom-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    animation: fadeInOut 1s forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}




.popup {
    width: 400px;
    background: rgba(192, 76, 155, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 25px 40px 40px;
    visibility: hidden;
    opacity: 0;
    transition: transform 0.3s ease-out, top 0.3s ease-out, opacity 0.3s ease-out;
    z-index: 1000;
}

.open-popup {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.close-popup {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
    top: 0;
}

.popup button {
    background: #413f3f;
    color: #ffffff;
    border: none;
    padding: 10px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.popup button:hover {
    background: #ffffff;
    color: #413f3f;
    transition: 0.3s ease;
}

.popup button:active {
    transform: scale(0.95);
}


.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.popup.open-popup+.backdrop {
    visibility: visible;
    opacity: 1;
}



@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 18px;
        text-align: center;
    }

    .tile,
    .tile-booking {
        flex-direction: space-between;
        align-items: center;
        justify-content: space-between;
        width: 90%;
        text-align: initial;
    }

    .icon {
        margin: 0 4px;
    }

    .icon svg,
    .icon img {
        width: 24px;
        height: 24px;
    }

    .popup {
        width: 75%;
        padding: 15px;
    }


}