/* Basis Widget Styles */
.eqlora-widget {
    position: fixed;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Positionierungsvarianten */
.eqlora-widget.right-top {
    top: 20px;
    right: 20px;
}

.eqlora-widget.right-middle {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.eqlora-widget.right-bottom {
    bottom: 20px;
    right: 20px;
}

.eqlora-widget.left-top {
    top: 20px;
    left: 20px;
}

.eqlora-widget.left-middle {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.eqlora-widget.left-bottom {
    bottom: 20px;
    left: 20px;
}

/* Toggle Button */
.eqlora-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #0073aa;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

/* SVG Icon */
.eqlora-toggle svg {
    width: 32px;
    height: 32px;
}

/* Hover & Focus */
.eqlora-toggle:hover,
.eqlora-toggle:focus {
    background: #005177;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.eqlora-panel {
    display: none;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 220px;
    border: 1px solid #ddd;
}

.eqlora-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.eqlora-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eqlora-btn {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f0f0f0;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.eqlora-btn:hover,
.eqlora-btn:focus {
    background: #e0e0e0;
    outline: 2px solid #0073aa;
    outline-offset: 1px;
    transform: translateX(2px);
}

/* Kontrastmodus */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast * {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiv */
@media (max-width: 768px) {
  .eqlora-toggle { width:44px; height:44px; }
  .eqlora-toggle svg { width:28px; height:28px; }
  .eqlora-btn { font-size:13px; padding:10px; }
}

/* Screenreader Only */
.sr-only {
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
}
^