body {
  font-family: Arial, sans-serif;
  padding: 20px;
}

#permissionsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

label {
  white-space: nowrap;
  width: calc(33.33% - 20px); /* Adjust the width based on the number of columns */
  box-sizing: border-box;
}

#categorydiv {
  white-space: nowrap;
  width: calc(33.33% - 20px); /* Adjust the width based on the number of columns */
  box-sizing: border-box;
}


/* Adjust styles for medium-sized devices */
@media (max-width: 768px) {
  label {
    width: calc(50% - 10px);
  }
}

/* Adjust styles for small-sized devices */
@media (max-width: 576px) {
  label {
    width: 100%;
  }
}

/* Add other CSS styling as needed */

  
  h1 {
    color: #7289DA;
  }

  
  button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #7289DA;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #5465A3;
  }
  
  #result {
    margin-top: 20px;
  }
  
  #calculatedPermissions {
    font-size: 18px;
    font-weight: bold;
  }
  
  a {
    color: #7289DA;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  



  
  
  
  

  input[type=text] {
    width: 230px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 12px 20px 12px 10px;
    transition: width 0.4s ease-in-out;
  }
  
  input[type=text]:focus {
    width: 50%;
  }


