.home-body-home {
  background-color: var(--color-background);
  margin : 800px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 100px;
  height: 100vh;
  user-select: none; 
}

.welcome-message-home {
  text-align: center;
  color: rgb(27, 27, 27);
  font-size: 14px;
  margin: 70px 0 25px;
}

.time-widget {
  text-align: center;
  margin: 10px 0 20px;
}

.grid-container-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 40px;
  width: 90%;
}

.grid-item {
  display: flex;
  flex-direction: column;
  width: 150px;
  height: 120px;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 7px;
  text-align: center;
  border-radius: 5%;
  transition: background-color 0.3s ease;
  color: black;
  font-weight: bold;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  gap: 20px;
  margin: auto;
}


.icon-home {
  font-size: 25px !important;
  color: rgb(25, 52, 84);
}


#pyp-icon, #bcra-icon, #nosis-icon {
  width: 50px;
  height: 50px;
}

.title-icon {
  font-size: 12px;
  font-weight: 700;
}

.grid-item:hover {
  cursor: pointer;
}

.popup-home {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  color: #343434;
}

.popup-content-home {
  background-color: var(--color-container);
  padding: 5px 30px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 50px 60px 40px rgba(21, 21, 21, 0.5);
}

.closer-edit {
  color: #707070;
  font-size: 24px;
  font-weight: bold;
  text-align: right;
}

.closer-edit:hover{
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.search-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 0;
}

.search-form input[type="text"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #8d8d8d;
}

#search-form .btn {
  width: 80%;
  padding: 10px;
  background-color: red;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#search-form .btn:hover {
  background-color: var(--color-btn-hover);
}

.modal-home-auth {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content-home-auth {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 50%;
  text-align: center;
}

.close-home-auth {
  color: red;
  font-size: 24px;
  float: right;
  cursor: pointer;
}
