/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  margin: 20px;
}

.modal.hidden { display: none; }

.modal-content {
  background: #111;
  color: #fff;
  padding: 2em;
  border-radius: 12px;
  text-align: center;
 width: auto;
  box-shadow: 0 0 20px rgba(0,255,170,0.4);
}

.modal-content h2 {
  margin-bottom: 0.5em;
}

.modal-content p {
  color: #aaa;
  margin-bottom: 1.5em;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 5em;
  cursor: pointer;
  color: #ec1313;
}
.close:hover { color: #fff; }

/* Login options */
.login-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.8em 1em;
  color: #fff;
  font-weight: 600;
  width: 100%;
  margin-bottom: 1em;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-option img {
    border-radius: 50%;
  width: 20px;
  height: 20px;
}

.login-option:hover {
  background: #00ffaa;
  color: #000;
}


.auth-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#userProfile{
    display: flex;
    align-items: center;
    gap: 1em;
} 
#userProfile div{
    display: flex;
    align-items: center;
    gap: 0.5em;
}
#userProfile img{
    border-radius: 50%;
    width: 40px;
    height: 40px;
  
}

#userProfile button {
  background-color: #dc2626;   /* tailwind red-600 */
  color: #fff;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

#userProfile button:hover {
  background-color: #b91c1c;   /* red-700 */
}

#userProfile button:active {
  transform: scale(0.97);
}

#userProfile button:focus {
  outline: 2px solid #fca5a5;  /* red-300 focus ring */
  outline-offset: 2px;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
}
.verified-badge svg {
  vertical-align: middle;
}
