/**
 * DreamMeans Main Stylesheet
 * Ana stil dosyası
 */

:root {
    --dm-primary: #6366f1;
    --dm-secondary: #8b5cf6;
    --dm-dark: #1a1a2e;
    --dm-light: #f8f9fa;
    --dm-border: #e0e0e0;
    --dm-success: #10b981;
    --dm-error: #ef4444;
}

/* Leaflet Marker Styles */
.dreameans-marker {
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-icon {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Popup Styles */
.dreameans-popup {
    min-width: 200px;
}

.dreameans-popup h4 {
    margin: 0 0 0.5rem 0;
    color: var(--dm-primary);
    font-size: 1.1rem;
}

.dreameans-popup p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* Language Selector */
.dreameans-lang-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.dreameans-lang-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--dm-border);
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
