﻿/* ????? ???????? */
.share-dropdown {
    position: relative;
    display: inline-block;
}

.share-button {
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
}

.share-button i {
    margin-right: 5px;
}

/* ??????? ???????? */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.share-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content button {
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px;
}

.dropdown-content button i {
    margin-right: 5px;
}

.dropdown-content button:hover {
    background-color: #f0f0f0;
}
img.style1:hover { transform: scale(0.95); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); }