#wpadminbar #wp-admin-bar-support-info > .ab-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    border-radius: 16px;
    /*padding: 4px 12px !important;*/
    font-size: 13px;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    white-space: nowrap;
}

#wpadminbar #wp-admin-bar-support-info > .ab-item:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #5b6ee5 0%, #6a3d9c 100%);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

#wpadminbar #wp-admin-bar-support-info:hover .support-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

#wpadminbar .support-dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border: 1px solid #ddd; 
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 260px;
    padding: 3px; 
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
}

#wpadminbar .support-dropdown-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    transform: translateY(-100%);
}

#wpadminbar .support-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 14px;
    border-radius: 8px 8px 0 0;
}

#wpadminbar .support-header h4 {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 600;
}

#wpadminbar .support-header p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

#wpadminbar .contact-info {
    padding: 10px 12px;
}

#wpadminbar .contact-item {
    display: flex;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

#wpadminbar .contact-item:last-child {
    border-bottom: none;
}

#wpadminbar .contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

#wpadminbar .contact-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 782px) {
    #wpadminbar .support-dropdown-content {
        left: auto;
        right: 10px;
        width: 90vw;
    }
}
