/* Marker Styles */
.marker-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.marker-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.marker-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

/* Popup Styles */
/* Note: Basic popup structure (.popup-content, etc) is in style.css */

.popup-img-placeholder {
    background: #f1f5f9;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.popup-side-header {
    margin-bottom: 16px;
}

.popup-side-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.popup-side-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.side-switch-btn {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    min-width: 40px;
    font-family: inherit;
    transition: all 0.2s;
}

.side-switch-btn.active {
    background: #0C4A9E;
    color: white;
    border-color: #0C4A9E;
    border: 1px solid #0C4A9E;
}

.side-switch-btn.inactive {
    background: white;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.popup-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-book-large {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-book-large.btn-details {
    background: #5244B7;
    color: white;
}

.btn-book-large.btn-details:hover {
    background: #43359d;
}

.btn-book-large.in-cart {
    background: #F93232 !important;
    color: white !important;
}


/* History List Styles (extracted from history.js) */
.history-item-title {
    text-decoration: none;
    color: inherit;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
}