
#password-criteria {
    display: none;
    color: #666666;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

#password-criteria .invalid {
    color: red;
}

#password-criteria .valid {
    color: green;
}

#instagram-widget{
    display: none !important;
}

#sticky-social-media-widget{
    display: none !important;
} 

.profile-pic {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-pic:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic input {
    display: none; /* Dosya seçme penceresi gizli */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    font-size: 13px;
    font-weight: bold;
    border-radius: 50%;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.profile-pic:hover .overlay {
    opacity: 1;
}
