
/* Styling for the content container */
.content-container {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  flex-direction: column;
}

/* Styling for the content area */
.content {
  flex: 1;
}


#changePasswordForm{
  display: flex;
  flex-direction: column;
  /* margin-top: 32px; */

  button {
    width: 50%;
    align-self: center;
  }

  .form-group {
    display: grid;
    grid-template-columns: auto 1fr; /* Two columns: auto for label, 1fr for input */
    gap: 10px; /* Space between label and input */
    align-items: center; /* Align items vertically in the center */
    margin-bottom: 15px; /* Space between each row */
    

    label{
      min-width: 128px;
      text-align: right;
    }
  }

  .form-buttons{
    display: flex;
    gap: 12px;
  }

}


#profileSection div{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#profileSection h3 {
  margin-top: 0;
  color: #333;
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  margin: 0;
}

#profileSection p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin: 12px;
}

#profileSection strong {
  display: inline-block;
  width: 40%; /* Fixed width to align labels vertically */
  text-align: left; /* Right-align labels */
}

#profileSection span {
  flex-grow: 1; /* Allow span to take the remaining space */
}


.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
  justify-content: center;
  align-items: center;
}


.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 36px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.close-button, .submit-button {
  background-color: #c8102e;
  color: white;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.close-button:hover, .submit-button:hover{
  background-color: #800000;
}


.tox-promotion-link {
  display: none !important;
}

.tox-statusbar__branding {
  display: none !important;
}


.admin-container{
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.grid-container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  padding: 24px;
  display: grid;
  width: fit-content;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: repeat(2, auto);  */
  gap: 120px;
  justify-items: center; 
  align-items: center;
  background-color: #33333394;
}

.grid-item {
  text-align: center; 
  cursor: pointer;

  i {
    color: #d3d3d3;
    font-size: 48px;
    margin-bottom: 5px;
  }
}

.dropdown-selection-content{
  i {
    font-weight: bold;
  }
}
