.container {
    width: 100%;
    height: 100%;
    padding: 15px;
    /* ХАКА САЛАМ, это изменения, чекай все изменения по ключевому слову в поиске ABOBA*/
    /* display: flex;
      flex-direction: column;
      justify-content: space-around; */
    /* align-items: center; */
    position: relative;
    margin: auto;
  } 
  .users_block_list {
    width: 65%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: 0.34px solid #00000052;
    border-radius: 12px;
    padding: 10px 20px;
    justify-content: space-around;
    box-shadow: 3.97px 3.97px 3.97px 0px #0000001F;
  }
  .user {
    width: 30%;
    display: flex;
    background-color: #4FA7FF;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    gap: 15px;
    padding: 25px 35px;
    box-shadow: 7px 6px 21px -7px rgba(0, 0, 0, 0.75);
    border-radius: 12px;
    margin: 20px;
  }
  .user_block_header h3 {
    font-size: 72px !important;
    color: #4FA7FF;
  }
  .user-about span {
    color: #fff;
    font-size: 22px;

  }
  .user ul {
    display: flex;
    justify-content: space-between;
  }

  .user_block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .user_block_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    align-items: center;
    gap: 20px;
  }
  .user_block_header h3{
    font-size: 24px;
    font-weight: bold;
  }
  .user-about {
    display: flex;
    flex-direction: column;
  }
  .add_user_btn{
    background-color: #4FA7FF;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    padding: 15px 35px;
    align-self: center;
    margin: 10px 0 20px 0;
    color: #fff;
    font-size: 20px;
    transition: .2s;
  }

  .submit_btn {
    width: 80%;
    text-align: center;
    background-color: #85C2FF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    gap: 15px;
    padding: 15px 35px;
    align-self: center;
    margin: 10px 0 20px 0;
    color: #fff;
    font-size: 20px;
    transition: .2s;
  }
  .add_user_btn img {
    width: 24px;
    height: 24px;
  }

  .add_user_btn:hover, .submit_btn:hover {
    background-color: #4088cf;
  }

  .remove_user_btn {
    background-color: #85C2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    width: 90%;
    align-self: center;
    margin: 10px 0 0 0;
    color: #fff;
    font-size: 16px;
    transition: .2s;
  }
  .remove_user_btn:hover {
    background-color: #cf4040;
  }
  .popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0000007c;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .popup_main {
    position: relative;
    width: 50%;
    display: flex;
    padding: 25px;
    justify-content: center;
    color: #fff;
    border-radius: 12px;
    background-color: #4FA7FFE5;
    border: 1px solid #FFFFFF

  }

  .popup_main_inner {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
 
  .popup_main h3 {
    font-weight: bold;
    color: #fff;
    font-size: 56px;
    text-align: center;
  }
  .form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-direction: column;
  }
  .form .label_field {
    width: 100%;
    display: flex;
    gap: 20px;
    font-size: 28px;
    color: #fff;
    align-items: center;
  }
  .select {
    width: 100%;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .select label {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #fff;
  }
  input[type="checkbox"] {
    transform: scale(2);  /* Увеличиваем размер на 50% */
    -webkit-transform: scale(2);  /* Для старых браузеров */
  }  
  .form input, .form select {
    width: 100%;
    padding: 8px;
    font-size: 18px;
    margin-bottom: 8px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    box-shadow: 0 0 0 0;
    color: white;
    -webkit-box-shadow: 0 0 0 0;
  }
  .form select {
    width: 30%;
    border: 1px solid #4FA7FF;
    border-radius: 5px;
  }
  .close_popup {
    border: 0;
    background-color: transparent;
    box-shadow: none;
    padding: 12px;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: 0.3s ease;
  }
  .close_popup:hover {
    transform: scale(0.9);
  }
  .checkbox-container {
    display: flex;
    gap: 15px;
  }

  .hidden {
    display: none;
  }