@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 14px;
  font-family: 'Poppins';
}

body {
  background-color: rgb(243, 243, 243);
}

#container {
  display: flex;
  margin: 50px;
  align-items: center;
  flex-wrap: wrap;
  /* border: 1px solid red; */
}

.header-section {
  display: flex;
  width: 100%;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgb(255, 255, 255),
    0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  /* background-color: #ffffff; */
  margin-bottom: 20px;
  padding: 10px;
  background-color: #ffffff;
}

.dropdown-menu {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.dropdown-menu p {
  margin-bottom: 8px;
}

/* #multipleSelect {
  width: 100% !important;
  border-radius: 3px !important;
} */

/* styling search bar */
.search input[type='text'] {
  width: 88%;
  height: 25px;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 17px 10px 17px 10px;
}

.search {
  display: flex;
  width: 50%;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

.search p {
  margin-bottom: 8px;
}

.search form {
  display: flex;
}

.search button {
  background-color: #0074d9;
  color: #f2f2f2;
  padding: 7px 10px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  margin-left: 20px;
  text-transform: uppercase;
}

.role-section {
  width: 100%;
  margin-top: 20px;
  box-shadow: inset 0 0 0 2px rgb(255, 255, 255),
    0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  background-color: #ffffff;
}

.role-section table tr th {
  font-weight: 600;
  padding: 16px;
  border-bottom: 1px solid rgb(201, 201, 201);
}

.role-section table .row1,
.row2,
td {
  padding: 6px 16px;
  border-bottom: 1px solid rgb(201, 201, 201);
}

.role-section table tr span.admin-role-chip {
  border: 1px solid grey;
  border-radius: 20px;
  padding: 4px 8px;
  line-height: 40px;
}

/* .role-section table tr:nth-child(even) {
  background-color: red !important;
} */

/* #role-section {
  margin: 0 auto;
  padding: 0px;
  text-align: center;
  width: 995px;
} */

#role-section h1 {
  margin-top: 50px;
  font-size: 45px;
  color: #585858;
}

#role-section h1 p {
  font-size: 20px;
}

#table_detail {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  color: #2e2e2e;
}

#table_detail tr:hover {
  background-color: #f2f2f2;
  cursor: pointer;
  border-radius: 6px;
}

#table_detail .hidden_row {
  display: none;
  padding: 10px;
  margin: 10px;
}

#table_detail .hidden_row td {
  vertical-align: middle;
  padding: 10px;
}

#table_detail .hidden_row label {
  margin: 10px 45px 30px 0px;
  line-height: 50px;
}

.hidden_row {
  display: flex;
}

.hidden_row button {
  width: 80px;
  padding: 6px;
  cursor: pointer;
  margin: 0 5px;
  line-height: 20px;
}

.hidden_row .submit-btn {
  background-color: #0074d9;
  border: none;
  color: white;
  border-radius: 3px;
}

.hidden_row .main-btn-hidden-section {
  display: flex;
  justify-content: center;
}

#hidden_row1{
  visibility: visible;
  
}

input[type='checkbox'] {
  vertical-align: middle;
  width: 15px;
  height: 25px;
  margin-left: 4px;
  margin-top: 1px;
}

.dropdown-menu select {
  margin-top: 5px;
  padding: 4px;
  border: 1px solid grey;
}

/* Library customizaton */
.select-item.vscomp-ele.pop-comp-ele {
  max-width: 100% !important;
  border-radius: 3px;
}

.vscomp-toggle-button {
  border-radius: 3px;
}

/* typehead */

.tt-query, /* UPDATE: newer versions use tt-input instead of tt-query */
.tt-hint {
  width: 100%;
  /* height: 30px; */
  padding: 8px 12px;
  /* font-size: 14px; */
  line-height: 30px;
  border: 2px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.tt-query {
  /* UPDATE: newer versions use tt-input instead of tt-query */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
  color: #999;
}

.tt-menu {
  /* UPDATE: newer versions use tt-menu instead of tt-dropdown-menu */
  width: 100%;
  margin-top: 12px;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.tt-suggestion {
  padding: 3px 20px;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
}

.tt-suggestion:hover {
  color: #f0f0f0;
  background-color: #0097cf;
}

.tt-suggestion p {
  margin: 0;
}

span.twitter-typeahead,
span.twitter-typeahead input {
  width: 100% !important;
}

.grey-bg-td {
  background-color: #ccc;
}
#table_detail tbody td:nth-child(4) {
  width: 30% !important;
}
