/* /cyber-products/cyber-qa/cyber-qa-shortcode.css */
.cyber-button[data-action="questions"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-right: 5px;
    background: #2A3439;
    border-radius: 4px;
    padding: 2px 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), inset 0 -1px 2px rgba(255, 255, 255, 0.2);
    color: #e0e0e0; /* Light text color for readability, matching cyber-qa.css */
    font-family: 'Share Tech Mono', monospace; /* Consistent with Q&A modal */
    border: none;
    cursor: pointer;
    text-transform: none; /* Remove uppercase to match .cyber-stars simplicity */
}

.cyber-button[data-action="questions"]:hover {
    background: #3a4449; /* Slightly lighter background on hover for subtle feedback */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), inset 0 -1px 2px rgba(255, 255, 255, 0.3); /* Subtle shadow change */
}

.cyber-qa-icon {
    font-size: 14px; /* Match font-size of the button */
    color: #e0e0e0; /* Consistent with button text */
}

.cyber-qa-count {
    font-size: 12px; /* Slightly smaller for hierarchy */
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .cyber-button[data-action="questions"] {
        font-size: 12px;
        padding: 2px 4px;
        margin-right: 4px;
    }
    
    .cyber-qa-icon {
        font-size: 12px;
    }
    
    .cyber-qa-count {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .cyber-button[data-action="questions"] {
        font-size: 11px;
        padding: 1px 3px;
        gap: 6px;
    }
    
    .cyber-qa-icon {
        font-size: 11px;
    }
    
    .cyber-qa-count {
        font-size: 10px;
    }
}