  .accommodation-container {
            max-width: 1000px;
            margin: 20px auto;
            font-family: Arial, sans-serif;
        }
        .accommodation-header {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .hotel-card {
            display: flex;
            margin-bottom: 30px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }
        .hotel-info {
            flex: 1;
            padding: 20px;
        }
        .hotel-image {
            width: 300px;
            height: 200px;
        }
        .hotel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hotel-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #2a5885;
        }
        .hotel-dates {
            color: #666;
            margin-bottom: 15px;
        }
        .hotel-location {
            color: #666;
            margin-bottom: 15px;
            font-style: italic;
        }
        .stay-details {
            margin-bottom: 15px;
        }
        .detail-label {
            font-weight: bold;
            display: inline-block;
            width: 120px;
        }
        .room-type {
            margin-bottom: 15px;
        }
        .hotel-tabs {
            display: flex;
            margin-top: 20px;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        .tab {
            margin-right: 15px;
            color: #2a5885;
            font-weight: bold;
            cursor: pointer;
        }