.job-share-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}

.share-text {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.4;
}

.share-toggle {
    font-size: 22px;
    background: #f1f1f1;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: 0.2s;
}

.share-toggle:hover {
    background: #e6e6e6;
    transform: scale(1.05);
}

.share-menu {
    position: absolute;
    bottom: 55px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    min-width: 150px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 9999;
    overflow: hidden;
}

.share-menu.active {
    display: flex;
}

.share-btn {
    padding: 11px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    text-align: right;
    font-size: 14px;
}

.share-btn:last-child {
    border-bottom: none;
}

.share-btn:hover {
    background: #f5f5f5;
}