@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans-bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
}

:root {
  --ink: #000;
  --paper: #fff;
  --product-scale: 0.67;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "IBM Plex Sans";
  background: var(--paper);
}

button,
input,
select,
textarea {
  font: inherit;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding-top: 72px;
}

.login-panel {
  width: min(78vw, 360px);
}

.login-title {
  margin: 0 0 42px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
}

.logo {
  position: relative;
  width: 34px;
  height: 34px;
  border: 5px solid #000;
  background: var(--paper);
}

.logo::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 13px;
  height: 13px;
  border: 5px solid #000;
  border-left-width: 10px;
  border-radius: 0 14px 14px 0;
}

.logo::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: -18px;
  border-top: 18px solid #000;
  border-right: 36px solid transparent;
}

.logo span {
  position: absolute;
  left: 15px;
  bottom: -9px;
  z-index: 1;
  border-top: 7px solid var(--paper);
  border-right: 15px solid transparent;
}

.login-logo {
  width: 116px;
  height: 116px;
  border-width: 15px;
  margin: 0 auto 84px;
}

.login-logo::before {
  left: 30px;
  top: 31px;
  width: 36px;
  height: 36px;
  border-width: 15px;
  border-left-width: 26px;
  border-radius: 0 38px 38px 0;
}

.login-logo::after {
  left: 31px;
  bottom: -43px;
  border-top-width: 43px;
  border-right-width: 83px;
}

.login-logo span {
  left: 45px;
  bottom: -23px;
  border-top-width: 18px;
  border-right-width: 42px;
}

.login-form {
  display: grid;
  gap: 10px;
}

.login-form label {
  font-size: 13px;
  font-weight: 800;
}

.login-form input {
  width: 100%;
  height: 34px;
  border: 2px solid #000;
  border-radius: 4px;
  padding: 0 8px;
  font-size: 13px;
  outline-color: #000;
}

.login-form label + input + label {
  margin-top: 18px;
}

.login-error {
  min-height: 16px;
  margin: 0;
  color: #000;
  font-weight: 700;
  font-size: 12px;
}

.login-form button {
  height: 39px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #000;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.login-form .login-text-link {
  height: auto;
  border: 0;
  border-radius: 0;
  color: #000;
  background: transparent;
  font-size: 10px;
  text-decoration: underline;
}

.dashboard-screen {
  min-height: calc(100vh / var(--product-scale));
  width: calc(100% / var(--product-scale));
  display: grid;
  grid-template-columns: 390px 1fr;
  zoom: var(--product-scale);
}

.sidebar {
  border-right: 1px solid #000;
  background: #fff;
}

.sidebar-clock {
  height: 82px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 0 34px;
  font-size: 19px;
  font-weight: 800;
}

.sidebar nav {
  padding: 29px 16px;
  display: grid;
  gap: 8px;
}

.sidebar button {
  height: 54px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  text-align: left;
  color: #000;
  background: transparent;
  font-size: 19px;
  cursor: pointer;
}

.sidebar button.active {
  color: #000;
  background: #fff;
  border: 1px solid #000;
  font-weight: 800;
}

.sidebar hr {
  width: calc(100% - 32px);
  margin: 18px 16px;
  border: 0;
  border-top: 1px solid #000;
}

.workspace {
  min-width: 0;
}

.topbar {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid #000;
  padding: 0 32px 0 66px;
  position: relative;
}

.topbar h1 {
  margin: 0;
  font-size: 24px;
}

.topbar-action {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.square-action {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #000;
  border-radius: 0;
  color: #000;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #000;
}

.topbar-actions button {
  border: 0;
  color: #000;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
}

.dashboard-content {
  padding: 34px 52px;
}

.dashboard-content h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.dashboard-content .section-title {
  margin-top: 28px;
}

.admin-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #000;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  height: 72px;
  border: 1px solid #000;
  padding: 18px;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  font-weight: 800;
}

.profile-table th {
  width: 34%;
}

.profile-table input,
.profile-table select,
.profile-table textarea,
.availability-table input,
.availability-table select,
.settings-table input {
  width: 100%;
  border: 1px solid #000;
  border-radius: 6px;
  color: #000;
  background: #fff;
  padding: 10px 12px;
  outline-color: #000;
}

.profile-table input,
.profile-table select,
.availability-table input,
.availability-table select,
.settings-table input {
  height: 42px;
}

.profile-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  accent-color: #000;
}

.settings-table th {
  width: 34%;
}

.settings-table a {
  color: #000;
}

.date-time-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.profile-table textarea {
  min-height: 88px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.form-actions button {
  height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 0 28px;
  color: #fff;
  background: #000;
  font-weight: 800;
  cursor: pointer;
}

.form-actions .delete-button {
  border: 1px solid #000;
  color: #000;
  background: #fff;
}

.form-actions p {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.data-table th,
.data-table td {
  height: 58px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.users-table {
  max-width: 1120px;
}

.users-table th:nth-child(1),
.users-table td:nth-child(1) {
  width: 90px;
}

.users-table th:nth-child(2),
.users-table td:nth-child(2) {
  width: 320px;
}

.users-table th:nth-child(3),
.users-table td:nth-child(3) {
  width: 260px;
}

.users-table th:nth-child(4),
.users-table td:nth-child(4) {
  width: 90px;
}

.users-table th:nth-child(5),
.users-table td:nth-child(5) {
  width: 240px;
}

.users-table th:nth-child(6),
.users-table td:nth-child(6) {
  width: 120px;
}

.coaches-table {
  max-width: 720px;
}

.coaches-table th:nth-child(1),
.coaches-table td:nth-child(1) {
  width: 90px;
}

.coaches-table th:nth-child(2),
.coaches-table td:nth-child(2) {
  width: 320px;
}

.coaches-table th:nth-child(3),
.coaches-table td:nth-child(3) {
  width: 310px;
}

.calls-table {
  max-width: 1340px;
}

.calls-table th:nth-child(1),
.calls-table td:nth-child(1) {
  width: 90px;
}

.calls-table th:nth-child(2),
.calls-table td:nth-child(2) {
  width: 190px;
}

.calls-table th:nth-child(3),
.calls-table td:nth-child(3),
.calls-table th:nth-child(4),
.calls-table td:nth-child(4) {
  width: 230px;
}

.calls-table th:nth-child(5),
.calls-table td:nth-child(5),
.calls-table th:nth-child(6),
.calls-table td:nth-child(6) {
  width: 120px;
}

.calls-table th:nth-child(7),
.calls-table td:nth-child(7),
.calls-table th:nth-child(8),
.calls-table td:nth-child(8) {
  width: 90px;
}

.patches-table {
  max-width: 1120px;
}

.patches-table th:nth-child(1),
.patches-table td:nth-child(1) {
  width: 90px;
}

.patches-table th:nth-child(2),
.patches-table td:nth-child(2) {
  width: 150px;
}

.patches-table th:nth-child(3),
.patches-table td:nth-child(3),
.patches-table th:nth-child(4),
.patches-table td:nth-child(4) {
  width: 260px;
}

.patches-table th:nth-child(5),
.patches-table td:nth-child(5) {
  width: 360px;
}

.videos-table {
  max-width: 980px;
}

.videos-table th:nth-child(1),
.videos-table td:nth-child(1) {
  width: 90px;
}

.videos-table th:nth-child(2),
.videos-table td:nth-child(2) {
  width: 460px;
}

.videos-table th:nth-child(3),
.videos-table td:nth-child(3) {
  width: 430px;
}

.table-link {
  border: 0;
  padding: 0;
  color: #000;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.profile-frontend-screen {
  min-height: calc(100vh / var(--product-scale));
  width: calc(100% / var(--product-scale));
  color: #000;
  background: #fff;
  zoom: var(--product-scale);
}

.profile-header {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding: 0 56px;
}

.profile-header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 19px;
  font-weight: 800;
}

.profile-header-actions button {
  border: 0;
  color: #000;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.profile-header-actions span {
  font-size: 28px;
  line-height: 1;
}

.profile-name-band {
  height: 128px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 0 48px;
}

.profile-name-band h1 {
  margin: 0;
  font-size: 30px;
}

.profile-frontend-shell {
  min-height: calc(100vh - 128px);
  display: grid;
  grid-template-columns: 312px 1fr;
}

.profile-side-nav {
  border-right: 1px solid #000;
  background: #fff;
}

.profile-side-nav button {
  width: 100%;
  height: 98px;
  display: flex;
  align-items: center;
  border: 0;
  border-bottom: 1px solid #000;
  color: #000;
  background: #fff;
  padding: 0 48px;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.profile-main {
  padding: 64px 48px;
}

.empty-message {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.profile-availability-form {
  overflow-x: auto;
}

.profile-availability-form h2 {
  margin: 0 0 22px;
  font-size: 24px;
}

.profile-availability-form .availability-table {
  min-width: 1180px;
}

.next-call-card {
  width: 100%;
  border: 1px solid #000;
  background: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.next-call-summary {
  border-bottom: 1px solid #000;
  padding: 28px 34px;
}

.next-call-summary p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 18px;
  margin: 0;
  font-size: 15px;
  line-height: inherit;
  font-weight: 800;
}

.next-call-summary span {
  margin: 0;
}

.next-call-summary strong {
  font-size: 15px;
  font-weight: 800;
}

.next-call-summary .linkedin-link {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  line-height: 1;
}

.next-call-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(360px, 0.9fr);
  min-height: 520px;
}

.call-video-panel {
  display: grid;
  place-items: center;
  padding: 56px;
  border-right: 1px solid #000;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid #000;
  background: #fff;
  text-align: center;
  text-transform: uppercase;
}

.video-placeholder strong,
.video-placeholder span {
  display: block;
  font-size: 15px;
  line-height: inherit;
  font-weight: 400;
}

.next-call-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #000;
  background: #fff;
}

.call-copy-panel {
  display: grid;
  align-content: start;
}

.call-info-block {
  border-bottom: 1px solid #000;
  padding: 26px 30px;
}

.call-info-block:last-child {
  border-bottom: 0;
}

.call-info-block h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
}

.call-info-block p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: inherit;
  font-weight: 400;
}

.call-info-block p:last-child {
  margin-bottom: 0;
}

.call-info-block .average-score {
  font-weight: 800;
}

.next-call-action {
  margin-top: 28px;
}

.next-call-action button {
  width: 250px;
  height: 72px;
  border: 1px solid #000;
  border-radius: 8px;
  color: #000;
  background: #fff;
  font-size: 22px;
  font-weight: 800;
  cursor: default;
}

@media (max-width: 900px) {
  .dashboard-screen {
    grid-template-columns: 220px 1fr;
  }

  .dashboard-content {
    padding: 24px;
  }

  .profile-frontend-shell {
    grid-template-columns: 96px 1fr;
  }

  .profile-main {
    padding: 32px;
  }
}
