.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.3rem 0rem;
}
.add_user_btn {
  width: 130px;
  height: 43px;
  font-family: "Manrope-SemiBold", sans-serif;
  background: #0165fc;
  border: 1px solid rgba(148, 155, 171, 0.4);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.add_user_btn:hover {
  color: #fff;
}
.add_user_btn_message {
  width: 130px;
  height: 36px;
  font-family: "Manrope-SemiBold", sans-serif;
  background: #0165fc;
  border: 1px solid rgba(148, 155, 171, 0.4);
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.add_user_btn_message:hover {
  color: #fff;
}
.table-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.table thead th {
  background: #f3f5f7;
  color: #7a869a;
  font-weight: 500;
  border-bottom: none;
  padding: 14px 20px;
}
.table tbody td {
  padding: 18px 20px;
  vertical-align: middle;
  border-top: 1px solid #e6ebf1;
  font-size: 15px;
  width: 25%;
}
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 16px;
}
.action-btn i {
  font-size: 18px;
}
.actions-column {
  white-space: nowrap;
}
tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
tr:first-child th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
tr:first-child th:first-child {
  border-bottom-left-radius: 10px;
}

.add-user-modal {
  border-radius: 12px;
  padding: 8px;
}

.modal-title {
  font-weight: 600;
  font-size: 24px;
}

.modal-subtitle {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 0;
}

.form-label {
  font-size: 16px;
  font-weight: 700;
}

.form-control {
  height: 44px;
  border-radius: 8px;
  font-size: 14px;
}

.permissions-box {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}

.permissions-box h6 {
  font-weight: 600;
  font-size: 15px;
}

.permission-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}

.permission-item:last-child {
  margin-bottom: 0;
}

.permission-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0d6efd;
}

.modal-footer {
  border-top: 1px solid #e5e7eb;
  padding: 16px 24px;
}

.btn-light {
  background: #eef2ff;
  color: #2563eb;
  border-radius: 8px;
}

.btn-primary {
  border-radius: 8px;
}
