/* General Body and HTML Styling */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden; /* Prevents scrollbars on the body */
    background-color: #f0f2f5;
}

/* Map Container */
#map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hotel Detail Panel */
#hotel-detail-panel {
    position: fixed;
    top: 0;
    right: -500px; /* Start off-screen */
    width: 450px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#hotel-detail-panel.show {
    right: 0; /* Slide in */
}

/* Panel Header */
.panel-header {
    padding: 20px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

#hotel-name {
    margin: 0;
    font-size: 1.8em;
    font-weight: 600;
}

#hotel-address {
    margin: 5px 0 0;
    font-size: 0.9em;
    opacity: 0.9;
}

/* Panel Content */
.panel-content {
    padding: 20px;
    flex-grow: 1;
}

.panel-content h3 {
    font-size: 1.4em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 5px;
}

/* Photo Gallery */
#hotel-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

#hotel-photos img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Services List */
#hotel-services {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#hotel-services li {
    background-color: #e9f5ff;
    color: #0056b3;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

/* Pricing Info */
#hotel-pricing {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #28a745;
    text-align: right;
}

/* Close Button */
#close-panel {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}