/* auth.css - Styles for login/logout button and user profile in navbar */

/* User profile container in navbar */
#user-profile {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  margin-right: 0;
}
#user-profile img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.5em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(23,189,177,0.10);
  transition: box-shadow 0.2s;
}
#user-profile img:hover {
  box-shadow: 0 4px 16px rgba(23,189,177,0.18);
}
#user-profile span {
  color: #fff;
  font-weight: bold;
  font-size: 1.05em;
  cursor: pointer;
  margin-right: 0.5em;
  letter-spacing: 0.5px;
}

#login-btn {
  display: inline-block;
  margin-right: 0;
  margin-left: 0;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  background: transparent;
  color: #43b7ce;
  border: 1px solid #43b7ce;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(23,189,177,0.10);
}

#login-btn:hover {
  background: #43b7ce;
  color: #0d0e10;
  box-shadow: 0 4px 16px rgba(23,189,177,0.18);
}

#logout-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid #b42e50;
  color: #b42e50;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(179, 25, 71, 0.1);
}

#logout-btn:hover {
  background-color: #b42e50;
  color: #FFF;
  box-shadow: 0 4px 16px rgba(189, 23, 78, 0.18);
}


@media (max-width: 600px) {
  #user-profile span {
    display: none;
  }
  #logout-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
  }
  #login-btn {
    padding: 0.5em 0.8em;
    font-size: 0.95em;
  }
}
