* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #e4e9ef;
  color: #4c5968;
}

[hidden] {
  display: none !important;
}

/* Main page */

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.page.alumni-mode {
  background: #fff;
}

.page.verification-mode {
  background: #e4e9ef;
}

.login-container {
  width: 300px;
  max-width: calc(100% - 40px);
  padding-top: 116px;
  position: relative;
}


/* Demo warning */

.demo-badge {
  display: none;

  position: absolute;
  top: 12px;
  right: 0;

  background: #fff3cd;
  border: 1px solid #e0c66c;
  color: #715b17;

  font-size: 11px;
  font-weight: bold;

  padding: 5px 8px;
  border-radius: 4px;
}


/* Logo */

.logo-area {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-bottom: 18px;
}

.isu-logo {
  color: #008fc7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -4px;
}

.university-name {
  padding-left: 12px;
  border-left: 2px solid #0097cb;
}

.uni-main {
  color: #008fc7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 0.98;
  letter-spacing: 1px;
}

.istanbul {
  margin-top: 5px;

  color: #202020;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;

  letter-spacing: 6px;
  white-space: nowrap;
}


/* Form */

.form-section {
  margin-bottom: 5px;
}

label,
.section-label {
  display: block;

  margin-bottom: 2px;

  font-size: 13px;
  font-weight: 700;
  color: #4c5968;
}

input {
  width: 100%;
  height: 42px;

  padding: 0 12px;

  border: 0;
  border-radius: 5px;
  outline: none;

  background: white;

  font-size: 14px;
  color: #333;
}

input:focus {
  box-shadow: 0 0 0 2px rgba(39, 155, 220, 0.25);
}


/* User type tabs */

.user-tabs {
  display: flex;
  width: 100%;
  height: 44px;

  border-radius: 5px;
  overflow: hidden;
}

.tab {
  flex: 1;

  border: 0;
  cursor: pointer;

  background: #c7ced7;
  color: white;

  font-size: 14px;
  font-weight: bold;

  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.tab.active {
  background: #303b4c;
}

.tab.graduate {
  background: #2d9cdb;
}

.tab.graduate.active {
  background: #278ec9;
}


/* Password */

.password-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.password-wrapper input {
  flex: 1;
}

.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;

  color: #566270;
}

.eye-button {
  width: 30px;
  height: 42px;

  padding: 0;

  font-size: 20px;
}

.logo-area + .form-section {
  margin-bottom: 17px;
}


/* Captcha */

.captcha-section {
  margin-top: 20px;
  margin-bottom: 16px;
}

.captcha-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.captcha-title-row label {
  margin-bottom: 0;
}

.refresh-button {
  width: 21px;
  height: 21px;
  padding: 0;
  margin-top: -3px;
  font-size: 18px;
  line-height: 1;
}

.captcha-row {
  display: flex;
  gap: 10px;
}

.captcha-image {
  width: 99px;
  height: 42px;

  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  background-color: white;

  background-image:
    linear-gradient(
      23deg,
      transparent 48%,
      rgba(90, 90, 90, 0.25) 49%,
      rgba(90, 90, 90, 0.25) 50%,
      transparent 51%
    ),
    linear-gradient(
      143deg,
      transparent 48%,
      rgba(90, 90, 90, 0.18) 49%,
      rgba(90, 90, 90, 0.18) 50%,
      transparent 51%
    );

  background-size: 14px 18px;
  border-radius: 3px;
}

.captcha-image::before,
.captcha-image::after {
  content: "";

  position: absolute;
  width: 132px;
  height: 1px;

  background: rgba(30, 30, 30, 0.35);

  transform: rotate(28deg);
}

.captcha-image::after {
  transform: rotate(-22deg);
}

.captcha-image span {
  position: relative;
  z-index: 2;

  color: #2f2f2f;

  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: bold;

  transform: rotate(-4deg);
}

.captcha-row input {
  flex: 1;
}


/* Login button */

.login-button {
  width: 100%;
  height: 43px;

  margin-top: 0;

  border: 0;
  border-radius: 5px;

  background: #24b364;
  color: white;

  cursor: pointer;

  font-size: 14px;
  font-weight: bold;

  transition: background 0.15s ease;
}

.login-button:hover {
  background: #1da158;
}

.login-button:active {
  transform: translateY(1px);
}


/* Bottom options */

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  margin-top: 15px;
}

.text-button {
  border: 0;
  background: transparent;
  padding: 0;

  color: #506073;

  cursor: pointer;

  font-size: 13px;
  font-weight: bold;
}

.language-section {
  text-align: center;
}

.language-title {
  margin-bottom: 5px;

  font-size: 13px;
  font-weight: bold;
  color: #4c5968;
}

.language-switch {
  display: flex;
  justify-content: flex-end;
}

.language {
  width: 35px;
  height: 24px;

  border: 0;

  background: #c4cbd4;
  color: white;

  font-weight: bold;
  font-size: 12px;

  cursor: pointer;
}

.language:first-child {
  border-radius: 5px 0 0 5px;
}

.language:last-child {
  border-radius: 0 5px 5px 0;
}

.language.active-language {
  background: #344052;
}


/* Demo message */

.message {
  min-height: 19px;

  text-align: center;
  color: #536170;

  font-size: 12px;
}

.message.error {
  color: #b3261e;
  font-weight: 700;
}


/* Alumni login */

.alumni-panel {
  width: 382px;
  max-width: calc(100% - 40px);
  min-height: 568px;
  margin-top: 25px;
  padding: 29px 38px 20px;

  position: relative;

  background: #b8d4ef;
  border: 3px solid #34436f;
  border-radius: 5px;
}

.alumni-cap {
  margin-bottom: 28px;

  color: #2d3f70;
  text-align: center;
  font-size: 47px;
  line-height: 1;
}

.alumni-logo {
  justify-content: center;
  margin-bottom: 43px;
}

.alumni-form {
  width: 100%;
}

.alumni-form .form-section {
  margin-bottom: 6px;
}

.alumni-form .alumni-captcha-section {
  margin-top: 26px;
  margin-bottom: 18px;
}

.alumni-panel .captcha-title-row {
  margin-bottom: 5px;
}

.alumni-panel .refresh-button {
  margin-top: -2px;
}

.alumni-panel .captcha-row {
  gap: 12px;
}

.alumni-panel .captcha-image {
  width: 99px;
}

.alumni-panel .bottom-row {
  margin-top: 20px;
}


/* Address verification */

.verification-panel {
  width: 436px;
  max-width: calc(100% - 40px);
  padding-top: 67px;
  text-align: center;
}

.verification-logo {
  justify-content: center;
  margin-bottom: 43px;
}

.verification-title {
  margin: 0 0 26px;

  color: #405165;

  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.verification-heading {
  margin: 0 0 18px;

  color: #3f5063;

  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
}

.verification-image {
  display: block;
  width: 146px;
  height: 109px;
  margin: 0 auto 28px;
  object-fit: contain;
}

.verification-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 92px;
  height: 35px;
  padding: 0 15px;

  border: 0;
  border-radius: 4px;

  background: #303b4c;
  color: #fff;

  cursor: pointer;
  text-decoration: none;

  font-size: 14px;
  font-weight: 700;
}

.verification-continue:hover {
  background: #253043;
}

.verification-continue:active {
  transform: translateY(1px);
}


/* Exam result */

.exam-result-body {
  min-height: 100vh;
  overflow-x: auto;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
}

.exam-result-page {
  width: min(100%, 980px);
  min-width: 840px;
  margin: 0 auto;
  padding: 36px 32px 66px;
  background: #fff;
}

.exam-result-header {
  min-height: 112px;

  display: grid;
  grid-template-columns: 250px 1fr 150px;
  align-items: start;
}

.exam-result-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exam-result-isu-logo {
  color: #008fc7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}

.exam-result-university-name {
  padding-left: 8px;
  border-left: 2px solid #008fc7;
}

.exam-result-uni-main {
  color: #008fc7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 1px;
}

.exam-result-istanbul {
  margin-top: 3px;

  color: #1f1f1f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;

  letter-spacing: 6px;
}

.exam-result-heading {
  padding-top: 7px;
  text-align: center;
}

.exam-result-heading h1 {
  margin: 0 0 20px;

  font-size: 23px;
  line-height: 1.1;
  font-weight: 700;
}

.exam-result-heading p {
  margin: 0;

  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
}

.exam-result-date {
  align-self: end;
  justify-self: end;
  margin-bottom: 10px;

  font-size: 11px;
}

.student-info-table,
.exam-results-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  table-layout: fixed;
}

.student-info-table th,
.student-info-table td,
.exam-results-table th,
.exam-results-table td {
  border: 1px solid #d6d6d6;
  padding: 2px 4px;

  vertical-align: top;

  color: #000;
  background: #fff;

  font-size: 11px;
  line-height: 1.25;
}

.student-info-table th {
  width: 15%;
  text-align: left;
  font-weight: 400;
}

.student-info-table td:nth-child(2) {
  width: 25%;
}

.student-info-table th:nth-child(3) {
  width: 15%;
}

.student-info-table td:nth-child(4) {
  width: 45%;
}

.exam-result-controls {
  margin: 0 0 1px;

  display: flex;
  align-items: center;
  gap: 3px;

  font-size: 11px;
}

.exam-result-controls label {
  display: inline;
  margin: 0;

  color: #000;
  font-size: 11px;
  font-weight: 400;
}

.exam-result-controls select {
  height: 20px;
  min-width: 88px;
  padding: 1px 18px 1px 4px;

  border: 1px solid #8f8f8f;
  border-radius: 3px;

  color: #000;
  background: #ededf8;

  font-size: 11px;
  line-height: 1;
}

.exam-result-controls button {
  height: 20px;
  padding: 1px 6px;

  border: 1px solid #777;
  border-radius: 3px;

  color: #000;
  background: #ededf8;

  cursor: pointer;

  font-size: 11px;
  line-height: 1;
}

.exam-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.exam-results-table {
  min-width: 840px;
}

.rate-column {
  width: 16%;
}

.assessment-column {
  width: 53%;
}

.grade-column {
  width: 12%;
}

.release-column {
  width: 19%;
}

.course-heading-row th {
  height: 18px;
  text-align: center;
  font-weight: 700;
}

.course-summary-row td {
  height: 58px;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
}

.compact-summary-row td {
  height: 24px;
}

.course-grade {
  text-align: center;
  font-weight: 700;
}

.achievement-score {
  margin-top: 14px;
  text-align: center;
  font-weight: 700;
}

.rate-cell,
.grade-point-cell {
  text-align: center;
}

.release-date-cell {
  white-space: nowrap;
}


/* Dashboard */

.dashboard-body {
  min-height: 100vh;
  overflow-x: auto;
  background: #dfe5ec;
}

.dashboard-shell {
  --dashboard-header-height: 76px;
  --dashboard-sidebar-width: 66px;
  --dashboard-expanded-sidebar-width: 326px;
  --dashboard-sidebar-transition: 260ms ease;

  min-width: 760px;
  min-height: 100vh;

  position: relative;

  display: grid;
  grid-template-columns: var(--dashboard-sidebar-width) 1fr;
  grid-template-rows: var(--dashboard-header-height) 1fr;

  background: #dfe5ec;
}

.dashboard-header {
  grid-column: 1 / -1;
  grid-row: 1;

  display: grid;
  grid-template-columns: var(--dashboard-sidebar-width) minmax(320px, 1fr) auto auto;
  align-items: center;

  background: #303946;
  border-top: 5px solid #2a313c;
  color: #f5f7fa;
}

.dashboard-logo-area {
  grid-column: 2;

  display: flex;
  align-items: center;
  gap: 10px;

  padding-left: 24px;
}

.dashboard-isu-logo {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
}

.dashboard-university-name {
  padding-left: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.82);
}

.dashboard-uni-main {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 0.98;
  letter-spacing: 0.5px;
}

.dashboard-istanbul {
  margin-top: 4px;

  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;

  letter-spacing: 5px;
  white-space: nowrap;
}

.session-timeout {
  width: 248px;
  min-height: 52px;
  margin-right: 21px;
  padding: 8px 14px;

  display: flex;
  align-items: center;
  gap: 14px;

  background: #354050;
  border: 1px solid #25303c;
  border-radius: 5px;
}

.session-timeout .fa-clock {
  width: 24px;
  height: 24px;

  position: relative;
  flex: 0 0 auto;

  color: #ff543f;
  font-size: 24px;
}

.session-timeout .fa-clock::before {
  content: "";

  position: absolute;
  inset: 2px;

  border: 4px solid #ff543f;
  border-radius: 50%;
}

.session-timeout .fa-clock::after {
  content: "";

  position: absolute;
  left: 11px;
  top: 6px;

  width: 7px;
  height: 7px;

  border-left: 3px solid #ff543f;
  border-bottom: 3px solid #ff543f;
}

.session-copy {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.session-time {
  display: inline;
  font-weight: 700;
}

.profile-area {
  min-width: 95px;
  height: 100%;

  position: relative;

  display: flex;
  align-items: center;
  gap: 11px;

  padding-right: 26px;
  padding-left: 12px;

  border-left: 1px solid #29313c;
}

.profile-menu-button {
  width: 16px;
  height: 32px;
  padding: 0;

  position: relative;

  border: 0;
  background: transparent;
  color: #8ea4b8;

  cursor: pointer;

  font-size: 14px;
}

.profile-menu-button i {
  display: none;
}

.profile-menu-button::before {
  content: "";

  position: absolute;
  left: 3px;
  top: 12px;

  width: 8px;
  height: 8px;

  border-right: 2px solid #8ea4b8;
  border-bottom: 2px solid #8ea4b8;

  transform: rotate(45deg);
  transition: transform 140ms ease;
}

.profile-menu-button[aria-expanded="true"]::before {
  top: 16px;
  transform: rotate(225deg);
}

.profile-image-placeholder {
  width: 40px;
  height: 52px;

  display: block;
  object-fit: cover;

  background: #eef2f6;
  border: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.profile-menu {
  width: 312px;
  padding: 13px 0 8px;

  position: absolute;
  top: calc(100% - 15px);
  right: 13px;
  z-index: 10;

  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.profile-menu-heading {
  padding: 0 22px 11px;

  display: flex;
  flex-wrap: wrap;
  gap: 4px;

  color: #55616f;

  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.profile-menu-item {
  width: 100%;
  min-height: 39px;
  padding: 8px 22px;

  display: flex;
  align-items: center;
  gap: 13px;

  border: 0;
  background: transparent;
  color: #536070;

  cursor: pointer;
  text-align: left;

  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.profile-menu-item:hover {
  background: #f2f5f8;
}

.profile-menu-item i {
  width: 14px;
  height: 14px;

  position: relative;
  flex: 0 0 auto;

  color: #5f6b78;
}

.profile-menu-item i::before,
.profile-menu-item i::after {
  content: "";
  position: absolute;
  display: block;
}

.profile-menu-item .fa-lock::before {
  left: 3px;
  top: 6px;

  width: 8px;
  height: 6px;

  border: 2px solid #5f6b78;
  border-radius: 1px;
}

.profile-menu-item .fa-lock::after {
  left: 4px;
  top: 1px;

  width: 6px;
  height: 8px;

  border: 2px solid #5f6b78;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.profile-menu-item .fa-pen-to-square::before {
  left: 1px;
  top: 3px;

  width: 9px;
  height: 9px;

  border: 1.8px solid #5f6b78;
}

.profile-menu-item .fa-pen-to-square::after {
  left: 6px;
  top: 1px;

  width: 8px;
  height: 2px;

  background: #5f6b78;
  transform: rotate(-38deg);
}

.profile-menu-item .fa-flag::before {
  left: 2px;
  top: 1px;

  width: 2px;
  height: 12px;

  background: #5f6b78;
}

.profile-menu-item .fa-flag::after {
  left: 4px;
  top: 2px;

  width: 9px;
  height: 6px;

  background: #5f6b78;
  clip-path: polygon(0 0, 100% 12%, 70% 50%, 100% 88%, 0 100%);
}

.profile-menu-item .fa-power-off::before {
  left: 2px;
  top: 3px;

  width: 10px;
  height: 10px;

  border: 2px solid #5f6b78;
  border-top-color: transparent;
  border-radius: 50%;
}

.profile-menu-item .fa-power-off::after {
  left: 6px;
  top: 0;

  width: 2px;
  height: 8px;

  background: #5f6b78;
}

.dashboard-sidebar {
  width: var(--dashboard-sidebar-width);

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

  display: flex;
  align-items: stretch;

  background: #303946;
  border-top: 5px solid #2a313c;
  z-index: 3;

  transition: width var(--dashboard-sidebar-transition);
}

.dashboard-shell.sidebar-expanded .dashboard-sidebar {
  width: var(--dashboard-expanded-sidebar-width);
}

.sidebar-icon-rail {
  width: var(--dashboard-sidebar-width);
  padding-top: 17px;
  padding-right: 0;
  padding-left: 0;

  flex: 0 0 var(--dashboard-sidebar-width);
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;

  background: #303946;
  border-right: 1px solid #3b4654;
}

.sidebar-button {
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;

  position: relative;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 5px;

  color: #fff;
  cursor: pointer;

  font-size: 21px;
}

.sidebar-button i {
  width: 22px;
  height: 22px;

  position: relative;
  display: block;
  flex: 0 0 auto;
}

.sidebar-button i::before,
.sidebar-button i::after {
  content: "";
  position: absolute;
  display: block;
}

.sidebar-button-announcements i::before {
  left: 3px;
  top: 2px;

  width: 12px;
  height: 15px;

  border: 2px solid #fff;
  border-radius: 2px;

  transform: skew(-11deg);
}

.sidebar-button-announcements i::after {
  left: 7px;
  top: 7px;

  width: 7px;
  height: 6px;

  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.sidebar-button-documents i::before {
  left: 3px;
  top: 2px;

  width: 13px;
  height: 17px;

  border: 2px solid #fff;
  border-radius: 1px;
}

.sidebar-button-documents i::after {
  right: 4px;
  top: 2px;

  width: 7px;
  height: 7px;

  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;

  background: inherit;
}

.sidebar-button-menu i::before {
  left: 2px;
  top: 2px;

  width: 5px;
  height: 5px;

  background: #fff;
  border-radius: 1px;
  box-shadow:
    7px 0 #fff,
    14px 0 #fff,
    0 7px #fff,
    7px 7px #fff,
    14px 7px #fff,
    0 14px #fff,
    7px 14px #fff,
    14px 14px #fff;
}

.sidebar-button.active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.sidebar-button:hover {
  background: #8f99a5;
}

.sidebar-button-announcements {
  background: #2ecc71;
}

.sidebar-button-documents {
  background: #9b59b6;
}

.sidebar-button-documents.active {
  background: #8f99a5;
}

.sidebar-button-menu {
  background: #21cdb8;
}

.sidebar-button-menu.active {
  background: #8f99a5;
}

.sidebar-expanded-panel {
  width: 0;
  padding-top: 23px;

  overflow: hidden;

  background: #2c3542;
  border-right: 1px solid #3a4552;

  opacity: 0;

  transition:
    width var(--dashboard-sidebar-transition),
    opacity 180ms ease;
}

.dashboard-shell.sidebar-expanded .sidebar-expanded-panel {
  width: calc(var(--dashboard-expanded-sidebar-width) - var(--dashboard-sidebar-width));
  opacity: 1;
}

.sidebar-expanded-panel h2 {
  width: calc(var(--dashboard-expanded-sidebar-width) - var(--dashboard-sidebar-width));
  margin: 0;
  padding: 0 10px 8px;

  color: #39e47e;

  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.sidebar-expanded-panel button,
.sidebar-expanded-panel a {
  width: calc(var(--dashboard-expanded-sidebar-width) - var(--dashboard-sidebar-width));
  min-height: 32px;
  padding: 6px 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);

  background: transparent;
  color: #fff;

  cursor: pointer;
  text-decoration: none;
  text-align: left;

  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.sidebar-expanded-panel button:hover,
.sidebar-expanded-panel a:hover {
  background: #8f99a5;
}

.sidebar-submenu-button i {
  width: 10px;
  height: 10px;

  position: relative;
  flex: 0 0 auto;

  opacity: 0.65;
}

.sidebar-submenu-button i::before {
  content: "";

  position: absolute;
  left: 1px;
  top: 0;

  width: 8px;
  height: 8px;

  border-right: 3px solid #a3acb7;
  border-bottom: 3px solid #a3acb7;

  transform: rotate(45deg);
}

.dashboard-main {
  grid-column: 2;
  grid-row: 2;

  position: relative;
  z-index: 1;

  padding: 24px 30px;
  background: #dfe5ec;

  transition:
    margin-left var(--dashboard-sidebar-transition),
    padding-left var(--dashboard-sidebar-transition);
}

.dashboard-shell.sidebar-expanded .dashboard-main {
  margin-left: calc(var(--dashboard-expanded-sidebar-width) - var(--dashboard-sidebar-width));
  padding-left: 30px;
}

.announcements-card {
  width: 400px;
  max-width: 100%;

  overflow: hidden;

  background: #fff;
  border-radius: 5px;
}

.announcements-header {
  height: 52px;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #303946;
  color: #fff;

  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.announcements-list {
  padding: 16px 14px 5px;
}

.announcement-item {
  padding: 9px 14px 15px;
  border-bottom: 1px solid #e4e8ed;
}

.announcement-title-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  color: #586779;
}

.announcement-title-line i {
  width: 16px;
  height: 16px;
  margin-top: 3px;

  position: relative;
  flex: 0 0 auto;

  color: #516071;
  font-size: 14px;
}

.announcement-title-line i::before {
  content: "";

  position: absolute;
  left: 1px;
  top: 5px;

  width: 8px;
  height: 5px;

  background: #516071;

  transform: skewY(-9deg);
}

.announcement-title-line i::after {
  content: "";

  position: absolute;
  left: 8px;
  top: 3px;

  width: 6px;
  height: 9px;

  border: 2px solid #516071;
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.announcement-title-line p,
.announcement-description {
  margin: 0;

  font-size: 12px;
  line-height: 1.8;
}

.announcement-title-line p {
  font-weight: 400;
}

.announcement-title-line strong {
  font-size: 14px;
}

.announcement-description {
  padding-left: 24px;
  color: #536274;
}

.announcement-description strong {
  display: block;
  font-weight: 700;
}


/* Responsive */

@media (max-width: 850px) {

  .dashboard-shell {
    --dashboard-header-height: 72px;
    --dashboard-sidebar-width: 60px;
    --dashboard-expanded-sidebar-width: 300px;

    width: 100%;
    min-width: 0;
  }

  .dashboard-header {
    grid-template-columns: var(--dashboard-sidebar-width) minmax(180px, 1fr) auto auto;
  }

  .dashboard-logo-area {
    min-width: 0;
    padding-left: 18px;
  }

  .dashboard-isu-logo {
    font-size: 36px;
  }

  .dashboard-uni-main {
    font-size: 17px;
  }

  .dashboard-istanbul {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .session-timeout {
    width: 188px;
    min-height: 48px;
    margin-right: 10px;
    padding: 7px 10px;
    gap: 9px;
  }

  .session-copy {
    font-size: 12px;
  }

  .profile-area {
    min-width: 72px;
    gap: 8px;
    padding-right: 14px;
    padding-left: 9px;
  }

  .profile-menu {
    right: 8px;
  }

  .dashboard-main {
    padding: 24px 18px;
  }

  .dashboard-shell.sidebar-expanded .dashboard-main {
    max-width: calc(100vw - var(--dashboard-expanded-sidebar-width));
  }

}

@media (max-width: 600px) {

  .page {
    min-height: 100svh;
    padding-right: max(0px, env(safe-area-inset-right));
    padding-left: max(0px, env(safe-area-inset-left));
  }

  .login-container {
    width: min(300px, calc(100% - 32px));
    max-width: none;
    padding-top: 58px;
  }

  .isu-logo {
    font-size: 40px;
    letter-spacing: -3px;
  }

  .uni-main {
    font-size: 18px;
  }

  .istanbul {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .logo-area {
    gap: 10px;
    margin-bottom: 16px;
  }

  .university-name {
    padding-left: 10px;
  }

  .logo-area + .form-section {
    margin-bottom: 14px;
  }

  input,
  .user-tabs,
  .login-button {
    height: 40px;
  }

  label,
  .section-label {
    font-size: 12px;
  }

  .tab {
    font-size: 13px;
  }

  .eye-button {
    height: 40px;
  }

  .captcha-section {
    margin-top: 16px;
    margin-bottom: 14px;
  }

  .captcha-row {
    gap: 8px;
  }

  .captcha-image {
    width: 92px;
    height: 40px;
  }

  .captcha-row input {
    min-width: 0;
  }

  .bottom-row {
    gap: 15px;
    margin-top: 14px;
  }

  .text-button,
  .language-title {
    font-size: 12px;
  }

  .alumni-panel {
    width: calc(100% - 32px);
    max-width: 382px;
    min-height: auto;
    margin-top: 16px;
    padding: 20px 22px 18px;
  }

  .alumni-cap {
    margin-bottom: 18px;
    font-size: 36px;
  }

  .alumni-logo {
    margin-bottom: 28px;
  }

  .alumni-form .alumni-captcha-section {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .verification-panel {
    width: min(360px, calc(100% - 32px));
    max-width: none;
    padding-top: 44px;
  }

  .verification-logo {
    margin-bottom: 30px;
  }

  .verification-title {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .verification-heading {
    margin-bottom: 13px;
    font-size: 17px;
  }

  .verification-image {
    width: 132px;
    height: 99px;
    margin-bottom: 20px;
  }

  .verification-continue {
    min-width: 88px;
    height: 34px;
    padding: 0 14px;
  }

  .dashboard-body {
    overflow-x: hidden;
  }

  .dashboard-shell {
    --dashboard-header-height: 68px;
    --dashboard-sidebar-width: 54px;
    --dashboard-expanded-sidebar-width: 220px;

    min-height: 100svh;
    grid-template-columns: var(--dashboard-sidebar-width) minmax(0, 1fr);
  }

  .dashboard-header {
    grid-template-columns:
      var(--dashboard-sidebar-width)
      minmax(112px, 1fr)
      auto
      auto;
    min-width: 0;
  }

  .dashboard-logo-area {
    gap: 6px;
    padding-left: 8px;
    overflow: hidden;
  }

  .dashboard-isu-logo {
    font-size: 25px;
    letter-spacing: -2px;
  }

  .dashboard-university-name {
    padding-left: 6px;
    border-left-width: 1px;
  }

  .dashboard-uni-main {
    font-size: 11px;
    letter-spacing: 0;
  }

  .dashboard-istanbul {
    margin-top: 2px;
    font-size: 7px;
    letter-spacing: 3px;
  }

  .session-timeout {
    width: 106px;
    min-height: 42px;
    margin-right: 4px;
    padding: 5px 6px;
    gap: 5px;
    border-radius: 4px;
  }

  .session-timeout .fa-clock {
    width: 17px;
    height: 17px;
    font-size: 17px;
  }

  .session-timeout .fa-clock::before {
    inset: 1px;
    border-width: 3px;
  }

  .session-timeout .fa-clock::after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 5px;
    border-left-width: 2px;
    border-bottom-width: 2px;
  }

  .session-copy {
    min-width: 0;
    font-size: 9px;
    line-height: 1.15;
  }

  .session-time {
    display: block;
    font-size: 10px;
  }

  .profile-area {
    min-width: 50px;
    gap: 4px;
    padding-right: max(7px, env(safe-area-inset-right));
    padding-left: 5px;
  }

  .profile-menu-button {
    width: 17px;
    height: 30px;
  }

  .profile-menu-button::before {
    left: 4px;
    top: 11px;
    width: 7px;
    height: 7px;
  }

  .profile-menu-button[aria-expanded="true"]::before {
    top: 15px;
  }

  .profile-image-placeholder {
    width: 28px;
    height: 37px;
    border-width: 1px;
  }

  .profile-menu {
    width: min(286px, calc(100vw - 18px));
    top: calc(100% - 7px);
    right: max(7px, env(safe-area-inset-right));
    padding-top: 11px;
  }

  .profile-menu-heading {
    padding: 0 16px 9px;
    font-size: 12px;
  }

  .profile-menu-item {
    min-height: 40px;
    padding: 8px 16px;
    gap: 11px;
    font-size: 13px;
  }

  .sidebar-icon-rail {
    padding-top: 15px;
    align-items: center;
  }

  .sidebar-button {
    width: 34px;
    height: 34px;
  }

  .sidebar-expanded-panel {
    padding-top: 21px;
  }

  .sidebar-expanded-panel h2,
  .sidebar-expanded-panel button,
  .sidebar-expanded-panel a {
    width: calc(var(--dashboard-expanded-sidebar-width) - var(--dashboard-sidebar-width));
  }

  .sidebar-expanded-panel h2 {
    padding: 0 8px 8px;
    font-size: 13px;
  }

  .sidebar-expanded-panel button,
  .sidebar-expanded-panel a {
    min-height: 31px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .dashboard-main {
    width: 100%;
    max-width: 100%;
    padding: 18px 12px;
    overflow: hidden;
  }

  .dashboard-shell.sidebar-expanded .dashboard-main {
    width: calc(100vw - var(--dashboard-expanded-sidebar-width));
    max-width: calc(100vw - var(--dashboard-expanded-sidebar-width));
    margin-left: calc(var(--dashboard-expanded-sidebar-width) - var(--dashboard-sidebar-width));
    padding-right: 8px;
    padding-left: 8px;
  }

  .announcements-card {
    width: 100%;
  }

  .announcements-header {
    height: 46px;
    font-size: 14px;
  }

  .announcements-list {
    padding: 12px 10px 4px;
  }

  .announcement-item {
    padding: 8px 8px 12px;
  }

  .announcement-title-line {
    gap: 6px;
  }

  .announcement-title-line p,
  .announcement-description {
    font-size: 11px;
    line-height: 1.65;
  }

  .announcement-title-line strong {
    font-size: 12px;
  }

  .announcement-description {
    padding-left: 22px;
  }

  .exam-result-body {
    overflow-x: hidden;
  }

  .exam-result-page {
    width: 100%;
    min-width: 0;
    padding: 24px 10px 48px;
    overflow: hidden;
  }

  .exam-result-header {
    min-height: 76px;
    grid-template-columns: 124px minmax(0, 1fr) 56px;
    column-gap: 6px;
  }

  .exam-result-logo {
    gap: 5px;
  }

  .exam-result-isu-logo {
    font-size: 30px;
  }

  .exam-result-university-name {
    padding-left: 5px;
    border-left-width: 1px;
  }

  .exam-result-uni-main {
    font-size: 12px;
    letter-spacing: 0.3px;
  }

  .exam-result-istanbul {
    font-size: 7px;
    letter-spacing: 3px;
  }

  .exam-result-heading {
    padding-top: 3px;
  }

  .exam-result-heading h1 {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .exam-result-heading p,
  .exam-result-date {
    font-size: 9px;
  }

  .exam-result-date {
    margin-bottom: 7px;
  }

  .student-info-table {
    min-width: 0;
    table-layout: auto;
  }

  .student-info-table th,
  .student-info-table td {
    padding: 1px 2px;
    font-size: 8.5px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .exam-result-controls {
    flex-wrap: wrap;
    gap: 3px 5px;
    margin-top: 3px;
    margin-bottom: 2px;
    font-size: 10px;
  }

  .exam-result-controls label {
    font-size: 10px;
  }

  .exam-result-controls select,
  .exam-result-controls button {
    height: 22px;
    font-size: 10px;
  }

  .exam-result-controls select {
    min-width: 88px;
    max-width: 136px;
  }

  .exam-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .exam-results-table {
    min-width: 720px;
  }

  .exam-results-table th,
  .exam-results-table td {
    padding: 2px 3px;
    font-size: 9px;
    line-height: 1.25;
  }

  .course-summary-row td {
    height: 50px;
  }

  .achievement-score {
    margin-top: 10px;
  }

}

@media (max-width: 400px) {

  .isu-logo {
    font-size: 36px;
  }

  .uni-main {
    font-size: 16px;
  }

  .istanbul {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .bottom-row {
    gap: 15px;
  }

  .alumni-panel {
    padding-right: 20px;
    padding-left: 20px;
  }

  .alumni-panel .captcha-row {
    gap: 10px;
  }

  .dashboard-shell {
    --dashboard-expanded-sidebar-width: 208px;
  }

  .dashboard-logo-area {
    padding-left: 6px;
  }

  .dashboard-isu-logo {
    font-size: 23px;
  }

  .dashboard-uni-main {
    font-size: 10px;
  }

  .dashboard-istanbul {
    letter-spacing: 2px;
  }

  .session-timeout {
    width: 98px;
    padding-right: 5px;
    padding-left: 5px;
  }

  .session-copy {
    font-size: 8.5px;
  }

  .session-time {
    font-size: 9.5px;
  }

  .profile-area {
    min-width: 46px;
    padding-left: 3px;
  }

  .profile-image-placeholder {
    width: 27px;
    height: 35px;
  }

}
