/* Responsive Design for Mobile Devices */

@media (max-width: 768px) {
    /* On smaller screens, the panel takes up the full width */
    #hotel-detail-panel {
        width: 100%;
        right: -100%; /* Start fully off-screen */
        box-shadow: none;
        border-left: none;
    }

    #hotel-detail-panel.show {
        right: 0;
    }

    .panel-header {
        padding: 15px;
    }

    #hotel-name {
        font-size: 1.5em;
    }

    #hotel-address {
        font-size: 0.8em;
    }

    .panel-content {
        padding: 15px;
    }

    .panel-content h3 {
        font-size: 1.2em;
    }

    #hotel-photos {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }

    #hotel-photos img {
        height: 80px;
    }

    #hotel-pricing {
        font-size: 1.1em;
    }

    #close-panel {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    #hotel-name {
        font-size: 1.3em;
    }

    #hotel-services li {
        font-size: 0.8em;
        padding: 6px 12px;
    }
}