/* public/css/public.css */
.interactive-image-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.interactive-image-wrapper {
    position: relative;
}

.interactive-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.iim-info-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
}

.iim-info-box .iim-close-info {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.iim-info-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.iim-info-content {
    margin-bottom: 10px;
}

.iim-info-link {
    display: inline-block;
    padding: 5px 10px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
}

.iim-info-link:hover {
    background: #005177;
}
/* public/css/public.css - Add these styles */
.hotspot-links-list {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.hotspot-links-list h3 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.hotspot-links-list ul {
    list-style: none;
    padding-left: 0;
}

.hotspot-links-list li {
    margin-bottom: 10px;
    padding: 8px;
    background: white;
    border: 1px solid #eee;
    border-radius: 3px;
}

.hotspot-links-list .hotspot-link {
    display: block;
    margin-top: 5px;
    color: #0073aa;
    text-decoration: none;
    word-break: break-all;
}

.hotspot-links-list .hotspot-link:hover {
    color: #005177;
    text-decoration: underline;
}

.hotspot-links-list .link-target {
    display: block;
    font-size: 12px;
    color: #666;
    font-style: italic;
}