body {
  margin: 0px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.container {
  min-height: 100vh;
  display: flex;
}
.toggleSidebar {
  width: 40px;
  height: 40px;
  position: fixed;
  display: none;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d0d0d, #001a33, #004080, #0d0d0d);
  cursor: pointer;
  z-index: 100;
}
.toggleSidebar .hamburger {
  width: 20px;
  position: relative;
  top: calc(50% - 2px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.toggleSidebar .hamburger > span, .toggleSidebar .hamburger > span::before, .toggleSidebar .hamburger > span::after {
  width: 100%;
  height: 4px;
  position: absolute;
  display: block;
  border-radius: 10px;
  background-color: #fff;
  transition-duration: .25s;
}
.toggleSidebar .hamburger > span::before {
  content: "";
  top: -8px;
}
.toggleSidebar .hamburger > span::after {
  content: "";
  top: 8px;
}
.toggleSidebar.isActive .hamburger > span {
  transform: rotate(45deg);
}
.toggleSidebar.isActive .hamburger > span::before {
  top: 0px;
  transform: rotate(0deg);
}
.toggleSidebar.isActive .hamburger > span::after {
  top: 0px;
  transform: rotate(90deg);
}
.sidebar {
  max-width: 250px;
  flex: 1 1 0;
  z-index: 100;
  background: linear-gradient(135deg, #0d0d0d, #001a33, #004080, #0d0d0d);
  background-size: 400% 400%;
  background-attachment: fixed;
  animation: gradientFlow 20s ease infinite;
}
.sidebar .card {
  margin: 20px;
  text-align: center;
}
.sidebar .card #sidebarAvatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.sidebar .card #sidebarGreeting {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
}
.sidebar hr, #qrCodeButton, #tfaDisableButton {
  margin: 20px 0px;
}
.sidebar ul {
  list-style: none;
  color: #fff;
  padding-left: 20px;
}
.sidebar li a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0px;
  cursor: pointer;
}
.content {
  width: 100%;
  position: relative;
  flex: 1;
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  color: #000;
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (max-width: 768px) {
  .toggleSidebar {
    display: block;
  }
  .sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: -250px;
    transition: 0.2s linear;
  }
  .sidebar.isActive {
    left: 0px;
  }
}
.form {
  max-width: 500px;
  margin: 0px auto;
  padding: 0px 20px 20px 20px;
}
.about, .profile {
  text-align: center;
  margin-bottom: 20px;
}
#profileForm .avatar {
  width: 150px;
  height: 150px;
  display: flex;
  margin: auto auto 10px auto;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
}
#profileForm .avatar .image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
#profileForm .avatar .none, #skillForm .none, #portfolioItemForm .none, #certificationForm .none, #customerForm .none, #tfaForm.none, #tfaEnabled.none, #tfaDisabled.none, .dialog::-webkit-scrollbar, .tableWrapper::-webkit-scrollbar {
  display: none;
}
.label {
  margin-bottom: 5px;
}
.required {
  color: #de350b;
}
.inputGroup {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.inputGroup .description {
  align-items: center;
  border-left: 1px solid #ced4da;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 6px 12px 4px 12px;
}
.inputGroup .input {
  flex: 1;
  border: 1px solid #ced4da;
  padding-left: 12px;
  padding-right: 12px;
  outline: none;
}
.inputGroup .input.borders {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.inputGroup .togglePassword {
  align-items: center;
  border-top: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 6px 12px 4px 12px;
  cursor: pointer;
}
.inputGroup #rememberMe {
  margin-left: 0px;
}
.button {
  height: 35px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
}
.button:disabled {
  background-color: #555;
  color: #aaa;
  opacity: 0.7;
  cursor: not-allowed;
}
.button.action {
  background-color: #0047b3;
  color: #fff;
}
button.success {
  background-color: #008000;
  color: #fff;
}
.button.error {
  background-color: #ff0000;
  color: #fff;
}
.button.link {
  background-color: #000;
  color: #fff;
}
.button:not(:disabled):hover {
  transform: scale(1.05);
}
.buttons {
  margin-top: 20px;
}
.banner {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 5px;
  margin-bottom: 10px;
}
.banner.success {
  background-color: #d1e7dd;
  color: #0f5132;
  border-color: #badbcc;
}
.banner.error {
  background-color: #f8d7da;
  color: #842029;
  border-color: #f5c2c7;
}
.banner .close {
  background-color: transparent;
  border: none;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  padding-left: 5px;
}
.banner.tfa {
  max-width: 500px;
  margin: auto auto 20px auto;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.profileCard {
  width: 100%;
  max-width: 500px;
  flex: 0 1 auto;
  margin: 0px auto 20px auto;
  padding: 20px;
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.5);
}
.profileCard .profileHeader {
  text-align: center;
  margin-bottom: 20px;
}
.profileCard .profileHeader .link {
  width: 150px;
  height: 150px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #b3b3b3;
}
.profileCard .profileHeader .link .avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: pointer;
}
.profileCard .profileHeader .username {
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0px;
}
.profileCard .profileDetails, .contact {
  display: grid;
  row-gap: 10px;
}
.profileCard .detail, .contact .detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 10px;
  align-items: center;
}
.profileCard .detail .description, .contact .detail .description {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  line-height: 1;
}
.profileCard .detail .value, .contact .detail .value {
  white-space: normal;
  word-break: normal; 
  overflow-wrap: anywhere;
}
.profileCard .detail .value a, .contact .detail a, table td a, .sidebar li a {
  color: inherit;
  text-decoration: none;
}
.overlay {
  position: absolute;
  display: none;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  padding: 20px;
  z-index: 999;
}
.dialog {
  width: 100%;
  max-width: 500px;
  max-height: calc(100vh - 40px);
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  align-self: flex-start; 
  overflow-y: auto;
}
.dialog .dialogTitle {
  display: flex;
  justify-content: space-between;
}
.dialog .dialogTitle .dialogTitleClose {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
}
.logoLabel {
  padding-top: 3px;
  cursor: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logoLabel.placeholder {
  color: #777;
  font-size: 14px;
  padding-top: 5px;
}
.logoPreview {
  width: 100px;
  height: 100px;
  display: none;
  margin: auto auto 10px auto;
}
.totalWrapper {
  text-align: right;
  margin-top: 10px;
}
.totalWrapper .total {
  padding: 8px 12px;
  font-weight: 700;
  background-color: #f2f2f2;
  border-radius: 5px;
}
.tableWrapper {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0px;
}
.tableWrapper.contacts {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
#contactsTable {
  border-collapse: separate;
  border-spacing: 0px;
}
table th, table td {
  border: 1px solid #000;
  padding: 8px 12px;
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
table th {
  position: sticky;
  top: 0px;
  z-index: 10;
  text-align: left;
  background-color: #f2f2f2;
}
table td.logo img {
  cursor: pointer;
}
table td div img {
  vertical-align: middle;
}
table col.text {
  width: auto;
  min-width: 100px;
}
table col.type {
  width: 110px;
}
table col.logo {
  width: 74px;
}
table col.date {
  width: 150px;
}
table col.language, table col.actions {
  width: 100px;
}
table .action {
  margin-right: 5px;
  cursor: pointer;
}
table tbody.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#toast {
  position: fixed;
  display: none;
  bottom: 20px;
  right: 20px;
  z-index: 200;
}
#toast .toast {
  padding: 20px 30px 20px 20px;
  color: #fff;
  border-radius: 10px;
}
#toast .toast.success, #status.enabled {
  background-color: #008000;
}
#toast .toast.error, #status.disabled {
  background-color: #ff0000;
}
#toast .toast .close {
  position: absolute;
  top: 5px;
  right: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
#status {
  width: 200px;
  margin: auto auto 20px auto;
  padding: 20px;
  border-radius: 15px;
  color: #fff;
}
#qrCode {
  margin: auto auto 10px auto;
}
.answer.answered {
  filter: brightness(0) saturate(100%) invert(29%) sepia(95%) saturate(749%) hue-rotate(86deg) brightness(92%) contrast(106%);
}
.answer.unanswered {
  filter: brightness(0) saturate(100%) invert(26%) sepia(100%) saturate(7485%) hue-rotate(0deg) brightness(108%) contrast(113%);
}
.noAccess {
  max-width: 500px;
  margin: auto auto 20px auto;
  text-align: center;
  font-size: 80px;
  font-weight: 700;
  font-style: italic;
}
.pageNotFound {
  color: #8080ff;
}
.unauthorized {
  color: #ff0000;
}
.grecaptcha-badge {
  visibility: hidden;
}
