/* Grundlegende Styles für den Golfplatz-Atlas */
:root {
    --primary-color: #2c5530;
    --secondary-color: #8bc34a;
    --text-color: #333;
    --background-color: #f5f5f5;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
}

/* KrPano Container Styles */
#krpanoSWFObject {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Custom Hotspot Styles */
.custom-hotspot {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-hotspot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-hotspot {
        padding: 6px 12px;
        font-size: 12px;
    }
}
