/* Manual Button Styling - LinkedIn Brand Colors */
.angie-linkedin-manual-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-family: "Figtree", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF !important; /* White text */
    background-color: #0077b5; /* Official LinkedIn Blue */
    padding: 8px 24px;
    border: 1px solid #0077b5;
    border-radius: 4px;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: auto;
}

.angie-linkedin-manual-btn:hover {
    color: #FFFFFF !important;
    background-color: #005582; /* Darker LinkedIn Blue on hover */
    border-color: #005582;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3); /* Blue shadow */
}

/* Ensure container allows side-by-side */
.elementor-widget-shortcode .elementor-widget-container {
    display: flex;
    align-items: center;
}

/* Fix for mobile */
@media (max-width: 767px) {
    .angie-linkedin-manual-btn {
        padding: 10px 16px;
        font-size: 15px;
        width: 100%;
    }
}
