body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: linear-gradient(to bottom right, #87CEFA, #B0E0E6);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.container {
  background-color: rgba(224, 224, 224, 0.5);
  position: fixed;
  border-radius: 20px;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1), -8px -8px 15px rgba(255, 255, 255, 0.7);
  text-align: left;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  z-index: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  margin-bottom: 20px;
}
.container:hover {
  background-color: #e0e0e0;
}
.container h1 {
  font-size: 1em;
  margin: 0;
  flex-grow: 1;
  margin-left: 10px;
}
.container button {
  background-color: #e0e0e0;
  border: none;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.9em;
  border-radius: 20px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), -4px -4px 10px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  margin-left: 10px;
  height: auto;
  transition: box-shadow 0.3s ease;
  margin-right: 10px;
}
.container button:hover {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1), -2px -2px 5px rgba(255, 255, 255, 0.7);
}
.container img {
  width: 40px;
  height: 40px;
  border-radius: 40%;
  border: 4px solid #fff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), -4px -4px 10px rgba(255, 255, 255, 0.7);
  margin-left: 10px;
  cursor: pointer;
}
.container .text-area {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}
.container p {
  font-size: 0.8em;
  margin: 0;
  color: #555;
}
#last-login {
  font-size: 0.8em;
  color: #666;
  font-style: italic;
  display: none;
}
.shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: none;
}
.fb-share-button {
  margin-top: 10px;
}
.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 10px;
  background-color: rgba(224, 224, 224, 0.5);
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
#delete-account-btn {
  display: none;
  background-color: #e0e0e0;
  border: none;
  padding: 8px 16px;
  font-size: 0.9em;
  border-radius: 20px;
  cursor: pointer;
}
#delete-account-btn:hover {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1), -2px -2px 5px rgba(255, 255, 255, 0.7);
}
/* Footer Styles */
.site-footer {
  background-color: rgba(224, 224, 224, 0.5);
  padding: 10px 0px 0px 10px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1), -8px -8px 15px rgba(255, 255, 255, 0.7);
  z-index: 10;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.footer-container {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr; /* Column 1 wider than others */
  gap: 5px; /* Space between columns */
  width: 90%;
  max-width: 1200px;
  align-items: center;
}
.footer-left {
  display: flex;
  flex-direction: column;
}
.footer-left h4,
.footer-left p,
.footer-left a,
.footer-last-login {
  margin: 1px 0; /* Reduced margin for compact spacing */
}
.footer-blank {
  /* Blank columns */
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0; /* Align to bottom of the footer */
  padding: 0px 30px 0px 0px;
  text-align: right;
}
.footer-social ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-social ul li {
  margin-left: 10px;
}
.footer-social ul li a i {
  font-size: 24px; /* Set consistent size for icons */
  color: #333;
  transition: color 0.3s ease, transform 0.2s ease;
}
.footer-social ul li a i:hover {
  color: #007bff; /* Change color on hover */
  transform: scale(1.1); /* Slight scale increase on hover */
}
/* Mobile Styles */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* Single column layout for mobile */
    text-align: center;
    position: static;
  }
  .footer-social {
    align-items: center;
    margin-top: 20px;
    position: static;
  }
  .footer-social ul {
    justify-content: center;
  }
}
