/* WordPress Ad Clicker Plugin Styles */

#wac-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 5px;
    animation: wac-pulse 2s infinite;
}

#wac-click-ad {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 45px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    outline: none;
}

#wac-click-ad:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

#wac-click-ad:active {
    transform: scale(0.95);
}

#wac-click-ad:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Pulse animation for the floating button */
@keyframes wac-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    #wac-floating-button {
        bottom: 15px;
        right: 15px;
    }
    
    #wac-click-ad {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Hide button on very small screens to avoid interference */
@media (max-width: 480px) {
    #wac-floating-button {
        bottom: 10px;
        right: 10px;
    }
    
    #wac-click-ad {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* Additional styles for admin settings page */
.wac-settings-section {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.wac-settings-section h3 {
    margin-top: 0;
    color: #333;
}

.wac-settings-section .description {
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

.wac-settings-section input[type="number"] {
    width: 100px;
}

.wac-settings-section input[type="checkbox"] {
    margin-right: 10px;
}

