/* Feedback Tab Button */

.feedback-button-dotnet {
    position: fixed;
    right: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    padding: 12px 24px;
    background: #337ab7;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    white-space: nowrap;
}

    .feedback-button-dotnet:hover {
        background: #337ab7;
        right: -35px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        color: #fff !important;
        text-decoration: underline !important;
    }

    .feedback-button-dotnet:focus,
    .feedback-button-dotnet:active {
        outline: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(51, 122, 183, 0.5);
    }

    .feedback-button-dotnet .feedback-icon {
        display: none;
    }

    .feedback-button-dotnet .feedback-text {
        display: block;
    }

/* Responsive */
@media (max-width: 768px) {
    .feedback-button-dotnet {
        padding: 10px 20px;
        font-size: 13px;
    }
}
