body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  height: 100vh;
}

.settings-container {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  width: 300px;
  text-align: center;
  overflow: auto;
}

.settings-container h1 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333333;
}

.setting-option {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setting-option label {
  font-size: 18px;
  color: #666666;
}

.toggle-switch {
  width: 40px;
  height: 20px;
  appearance: none;
  background-color: #ccc;
  border-radius: 20px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle-switch:checked {
  background-color: #4caf50;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}

.toggle-switch:checked::before {
  transform: translateX(20px);
}

.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999999999999999999999;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.nav-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.nav-item {
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  flex: 1;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #007bff;
}

.material-symbols-outlined {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}

.nav-label {
  font-size: 12px;
}

#change-display-name-popup {
  z-index: 99999999999999999999999999;
}

#change-display-name-form {
  /* background-color: #f9f9f9;
  border: 1px solid #ddd; */
  border-radius: 8px;
  padding: 20px;
  padding-left: 0;
  /* width: 100%; */
  max-width: 400px;
  margin: 20px auto;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

#change-display-name-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

#change-display-name-form input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 16px;
}

#change-display-name-form button {
  background-color: #EB8546;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#change-display-name-form button:hover {
  background-color: #c46c36;
}

button {
  background-color: #EB8546;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #c46c36;
}

~source footer {
  src: '/fbc/footer.html'
}

.profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}

.profile .profile-info {
  text-align: right;
}

#pfp1 {
  height: 96px;
  width: 96px;
}

#f-f {
  margin-top: 40px;
}

.f {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: calc(100% - 30px);
  max-width: 100%;
  margin: 20px auto;
  cursor: pointer;
  transition: background-color 0.3s;
}

.f:hover {
  background-color: #f9f9f9;
}

.friend-request {
  padding: 15px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  width: 90%;
  margin-bottom: 20px;
}

/* .friend-request:hover {
  background-color: #e0e0e0;
} */

.friend-request-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.friend-request p {
  margin: 0;
  font-size: 30px;
  /* font-weight: bold; */
  color: #444;
}

.friend-request .buttons {
  display: flex;
  gap: 10px;
}

.friend-request .buttons button {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #EB8546;
  transition: background-color 0.3s ease;
}

.friend-request .buttons button.deny {
  background-color: #ababab;
}

.friend-request .buttons button:hover {
  background-color: #c46c36;
}

.actions {
  text-align: center;
  padding-bottom: 200px;
}

.actions p {
  cursor: pointer;
}