/* ===== PROFİL BUTONU ===== */

.user-button-profile {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
    margin-left: 8px;
    position: relative;
}

.user-button-profile:hover,
.user-button-profile:focus {
    background: #e8e8e8;
    box-shadow: 0 0 0 3px rgba(187, 187, 187, 0.4);
}

.user-button-profile i {
    font-size: 12px;
    color: #000;
    pointer-events: none;
}

.user-button-profile[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -32px;
    background: #1a1a1a;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.91em;
    opacity: 0.95;
    pointer-events: none;
    white-space: nowrap;
    z-index: 6000;
}
