@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins";
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f9fafb;
  color: #1f2937;
  position: relative;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff; /* white background */
  border-bottom: 1px solid #e5e7eb; /* light gray border */
}

body {
  padding-top: 4rem; /* same value as the navbar’s height */
}

.navbar .branding img {
  display: block;
}

.navbar a,
.navbar select {
  color: #1f2937; /* dark text by default */
  font-size: 0.9rem;
}

.navbar .logout-button:hover {
  text-decoration: underline;
  color: #0060a9;
}

.role-select {
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
}

.role-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25);
}

::-webkit-scrollbar {
  display: none;
}
::-webkit-scrollbar-thumb {
  background: transparent;
}
::-webkit-scrollbar-track {
  background: transparent;
}

a {
  color: #0060a9;
  text-decoration: none;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  height: 100vh;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.profile-completion {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  min-height: 100vh;
}

.profile-form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 600px;
  margin: 0;
}

.profile-form-container .description {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

#profile-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#profile-form div {
  margin-bottom: 0.5rem;
}

#profile-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

#profile-form input,
#profile-form select,
#profile-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #1f2937;
  min-height: 2.5rem;
}
#profile-form input:focus,
#profile-form select:focus,
#profile-form textarea:focus {
  border-color: #3b82f6;
  outline: none;
}
#profile-form button {
  padding: 0.5rem 1rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  min-height: 2.5rem;
}
#profile-form button:hover {
  background-color: #2563eb;
}
#profile-form button:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}
