
.profile-container {
position: absolute;
top: 20px;
right: 20px;
display: flex;
align-items: center;
}

.profile-btn {
background-color: #9b9b9b;
color: #fff;
border: #fff;
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 1.5em;
transition: background-color 0.3s ease;
}

.profile-btn:hover {
background-color: #bec0c1;
}

.profile-dropdown {
display: none;
position: absolute;
top: 50px;
right: 0;
background-color: #000505;
color: #828080;
border-radius: 0px;
padding: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 1000;
align-items: left;
}

.profile-container:hover .profile-dropdown {
display: block;
}

.profile-dropdown h3 {
margin-top: 0;
}

.profile-dropdown p {
margin: 5px 0;
}

.logout-btn {
background-color: #bebcbc;
color: #050000;
border: none;
padding: 5px;
border-radius: 3px;
cursor: pointer;
font-size: 12px;
text-align: center;
display: block;
margin: 10px auto 0;
}

.logout-btn:hover {
background-color: #bfbdbd;
}

@media (max-width: 768px) {
.profile-container {
top: 10px;
right: 10px;
}  

.profile-btn {
width: 35px;
height: 35px;
font-size: 1.2em;
}
}
.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 999;
    user-select: none;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Bend Marner', sans-serif;
}

