/* Bug Report Button Styles */
#bug-report-btn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background-color: #ffd43b !important;
    background-image: linear-gradient(135deg, #ffdb4d 0%, #ffc107 100%) !important;
    border: 2px solid #fcbf09 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

#bug-report-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4) !important;
    background-image: linear-gradient(135deg, #ffe066 0%, #ffcb2d 100%) !important;
    border-color: #ffa000 !important;
}

#bug-report-btn:active {
    transform: scale(0.95);
}

#bug-report-btn i {
    font-size: 1.5rem !important;
    color: #444 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Pulsierender Ring-Effekt */
#bug-report-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Tooltip Styling */
#bug-report-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Für kleine Bildschirme */
@media (max-width: 576px) {
    #bug-report-btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    #bug-report-btn i {
        font-size: 1.2rem !important;
    }
}