.imgG {
  width: 475px;
}

body{
  color: #444;
  font-family: 'Poppins', sans-serif;
  display: flex;
  height: 100vh;
}

#app{
  width: 900px;
  margin: auto;
  box-shadow: 4px 4px 4px 4px #888;
  padding: 20px;
  border-radius: 20px;
}

.center{
  text-align: center;
}

h3{
  margin: 4px;
  font-weight: normal;
}

input{
  width: 80%;
  margin: 4px;
  padding: 4px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

button{
  background-color: #4C4;
  font-size: 15px;
  color: white;
  padding: 4px;
  margin: 4px;
  border-radius: 8px;
  outline: none;
  border: none;
}

button:hover{
  opacity: 0.75;
  cursor: pointer;
}

p{
  margin: 0px;
}

.startHidden{
  display: none;
}

.alternative {
  background-color: #44c;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loadClass {
  height: 200px;
  width: 200px;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* Apply the fade animation to the image */
.fade-image {
  animation: fadeInOut 3s ease-in-out infinite;
}

a{
  cursor: pointer;
}

#userImg{
  height: 40px;
  border-radius: 100%;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  background-color: white;
  border: 1px solid #dadce0;
  border-radius: 24px;
  padding: 10px 20px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #3c4043;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
  transition: box-shadow 0.2s ease-in-out;
}

.google-btn:hover {
  box-shadow: 0 2px 6px rgba(60, 64, 67, 0.3);
}

.google-btn img {
  height: 20px;
  margin-right: 10px;
}

.google-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
}

.google-btn:disabled:hover {
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
}

#userInfo .d-flex {
  position: relative;
}

#trashcanID {
  position: absolute;
  right: 0; /* Adjust as needed */
}