body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: #333;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: 9999;
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, 9999);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: -webkit-fit-content;
  width: fit-content;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: 320px;
  width: var(--toastify-toast-width);
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 14px;
  padding: var(--toastify-toast-padding);
  border-radius: 6px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: var(--toastify-toast-shadow);
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: auto;
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: 320px;
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: #fff;
  color: var(--toastify-text-color-info);
  background: #3498db;
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: #fff;
  color: var(--toastify-text-color-success);
  background: #07bc0c;
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: #fff;
  color: var(--toastify-text-color-warning);
  background: #f1c40f;
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: #fff;
  color: var(--toastify-text-color-error);
  background: hsl(6, 78%, 57%);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: hsl(6, 78%, 57%);
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: rgba(255, 255, 255, 0.7);
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: auto;
  right: initial;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: 0;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: 6px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: 6px;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: 0.2;
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Unified Login Component Styles - Design System Compliant */

/* Main container */
.login-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
}

/* Login card */
.login-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 420px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Header section */
.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.student-icon {
  background: linear-gradient(135deg, #4a2b8f 0%, #6b46c1 100%);
}

.institute-icon {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.company-icon {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.organization-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.login-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
}

.login-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.login-subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Form styles */
.login-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin: 0;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  z-index: 2;
  pointer-events: none;
}

.email-icon::before {
  content: '@';
  color: #6b7280;
  font-weight: 600;
}

.password-icon::before {
  content: '🔒';
  font-size: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: #4a2b8f;
  box-shadow: 0 0 0 3px rgba(74, 43, 143, 0.1);
}

.form-input.error {
  border-color: #ef4444;
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: #4a2b8f;
}

.error-text {
  font-size: 12px;
  color: #ef4444;
  margin: 0;
  font-weight: 500;
}

/* Remember me and forgot password */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: #4a2b8f;
  cursor: pointer;
}

.checkbox-label {
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}

.forgot-password-link {
  font-size: 14px;
  color: #4a2b8f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.forgot-password-link:hover {
  color: #6b46c1;
  text-decoration: underline;
}

/* Button styles */
.btn-primary {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #4a2b8f 0%, #6b46c1 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 43, 143, 0.3);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Divider */
.login-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  gap: 16px;
}

.divider-line {
  flex: 1 1;
  height: 1px;
  background: #e5e7eb;
}

.divider-text {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
}

/* Additional actions */
.login-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-secondary {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #4a2b8f;
  border: 2px solid #4a2b8f;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #4a2b8f;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 43, 143, 0.2);
}

.btn-tertiary {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-tertiary:hover {
  background: #f8fafc;
  color: #374151;
  border-color: #d1d5db;
}

/* Role-specific button styles */
.login-button {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.student-button {
  background: linear-gradient(135deg, #4a2b8f 0%, #6b46c1 100%);
  color: white;
}

.student-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 43, 143, 0.3);
}

.institute-button {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
}

.institute-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.company-button {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
}

.company-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.organization-button {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  color: white;
}

.organization-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Error message */
.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* Responsive design */
@media (max-width: 640px) {
  .login-container {
    padding: 16px 12px;
  }

  .login-card {
    padding: 24px 16px;
    max-width: 100%;
  }

  .login-title {
    font-size: 24px;
  }

  .login-subtitle {
    font-size: 14px;
  }

  .login-icon {
    width: 64px;
    height: 64px;
  }

  .form-input {
    padding: 12px 16px 12px 44px;
    font-size: 15px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-tertiary {
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 20px 12px;
  }

  .login-title {
    font-size: 22px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Loading state */
.login-loading {
  pointer-events: none;
  opacity: 0.8;
}

/* Focus states */
.form-input:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-tertiary:focus-visible {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .login-card {
    border: 2px solid #1f2937;
  }

  .form-input {
    border-width: 2px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-tertiary {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .login-card,
  .btn-primary,
  .btn-secondary,
  .btn-tertiary,
  .form-input,
  .forgot-password-link {
    transition: none;
  }

  .loading-spinner {
    animation: none;
  }
}
/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation */
.header {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4f46e5;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 1rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
}

.nav-link:hover {
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.1);
}

/* Navigation Dropdown Styles */
.nav-dropdown {
  position: relative;
}

.login-btn,
.register-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.login-btn {
  color: #4f46e5;
}

.register-btn {
  color: #10b981;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown-arrow.open {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: #374151;
}

.dropdown-item:hover {
  background: #f8fafc;
  color: #4f46e5;
}

.dropdown-item:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

.user-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.cta-nav:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger-line.open {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-line.open:nth-child(2) {
  opacity: 0;
}

.hamburger-line.open:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main {
  flex: 1 1;
  margin-top: 80px;
}

/* Hero Section */
.hero {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grain\" width=\"100\" height=\"100\" patternUnits=\"userSpaceOnUse\"><circle cx=\"25\" cy=\"25\" r=\"1\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"75\" cy=\"75\" r=\"1\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"50\" cy=\"10\" r=\"0.5\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"10\" cy=\"60\" r=\"0.5\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"90\" cy=\"40\" r=\"0.5\" fill=\"white\" opacity=\"0.1\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url%28%23grain%29\"/></svg>");
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-title-highlight {
  display: block;
  color: #fbbf24;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.cta-button {
  background: white;
  color: #4f46e5;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.secondary-button {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: white;
  color: #4f46e5;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 2rem;
  background: white;
}

.testimonials-carousel {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  transition: transform 0.1s linear;
}

.testimonial-card {
  background: #f8fafc;
  padding: 1.8rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 320px;
  flex-shrink: 0;
  max-width: 320px;
  height: auto;
  min-height: 280px;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  text-align: center;
}

.testimonial-rating {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clients Section */
.clients {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.clients-carousel {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  transition: transform 0.1s linear;
}

.client-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 320px;
  flex-shrink: 0;
  max-width: 320px;
  height: auto;
  min-height: 320px;
}

.client-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.client-content {
  text-align: center;
}

.client-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.client-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.client-industry {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.client-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.client-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: 1.5rem;
}

.client-stat {
  text-align: center;
}

.client-stat .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 0.25rem;
  display: block;
}

.client-stat .stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-info {
  margin-left: 1rem;
  text-align: left;
}

.author-avatar {
  font-size: 2.5rem;
  background: #e5e7eb;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 1rem;
}

.author-role {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Business Section */
.business {
  padding: 6rem 2rem;
  background: #f1f5f9;
}

.business-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
}

.business-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.business-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.business-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.business-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.business-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.business-features {
  list-style: none;
  margin-bottom: 0;
}

.business-features li {
  padding: 0.75rem 0;
  color: #4b5563;
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.business-features li:last-child {
  border-bottom: none;
}

.business-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1rem;
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background: white;
  display: block;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: start;
  visibility: visible;
  opacity: 1;
}

.about-text {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.about-text.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.about-stats.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

.about-stat {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.user-types {
  max-width: 1200px;
  margin: 0 auto;
}

.user-type-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.user-type-tab {
  padding: 0.875rem 2rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-type-tab:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
}

.user-type-tab.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.user-type-content {
  position: relative;
}

.user-type-process {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.user-type-process.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.process-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.process-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 3rem;
  gap: 3rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-content {
  flex: 1 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.step-description {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Pricing Section */
.pricing {
  padding: 6rem 2rem;
  background: white;
}

.pricing-plans {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.pricing-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #4b5563;
  border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Success Metrics Section */
.success-metrics {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.metric-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.metric-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.metric-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.metric-description {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  padding: 6rem 2rem;
  background: white;
}

.faq-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  border-color: #667eea;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.faq-accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-accordion-header:hover {
  background: #f1f5f9;
}

.faq-accordion-header:focus {
  outline: none;
  background: #f1f5f9;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #667eea;
  min-width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion-content.open {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.faq-accordion-content.open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  
  gap: 4rem;
  align-items: start;
}

.contact-info {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.contact-info.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-feature {
  display: flex;
  align-items: start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-feature-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-feature-text p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.8;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.contact-form.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
  background: #4f46e5;
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .cta-button {
  width: 100%;
  background: white;
  color: #4f46e5;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 3rem;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f1f5f9;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section button,
.footer-section a {
  color: #94a3b8;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding: 0;
  text-align: left;
  width: 100%;
}

.footer-section button:hover,
.footer-section a:hover {
  color: #f1f5f9;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.5rem;
}

.social-links a:hover {
  color: #f1f5f9;
  border-color: rgba(241, 245, 249, 0.3);
  background: rgba(241, 245, 249, 0.05);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: #64748b;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.nav-menu-active {
    left: 0;
  }

  /* Mobile Dropdown Styles */
  .nav-dropdown {
    width: 100%;
  }

  .login-btn,
  .register-btn {
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid #e5e7eb;
    margin-top: 0.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: none;
  }

  .dropdown-menu.open {
    display: block;
  }

  .dropdown-menu:not(.open) {
    display: none;
  }

  .dropdown-item {
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 6rem 1rem 4rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .features,
  .testimonials,
  .business,
  .about,
  .how-it-works,
  .pricing,
  .success-metrics,
  .faq,
  .contact {
    padding: 4rem 1rem;
  }

  .features-grid,
  .business-grid,
  .process-steps,
  .pricing-plans,
  .metrics-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-carousel {
    max-width: 100%;
    padding: 0 1rem;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.5rem;
  }

  .client-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.5rem;
    border-radius: 0.75rem;
    height: auto;
    min-height: 260px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .metric-card {
    padding: 1.5rem;
  }

  .faq-accordion-header {
    padding: 1.25rem 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-icon {
    font-size: 1.25rem;
  }

  .faq-accordion-content.open {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .user-type-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .user-type-tab {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .process-header h3 {
    font-size: 1.5rem;
  }

  .process-icon {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .pricing-plans {
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-section ul {
    text-align: center;
  }

  .footer-section button,
  .footer-section a {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
  .proveen-class{
    color: white;
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .contact-features {
    gap: 1rem;
  }

  .contact-feature {
    padding: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card.visible,
.testimonial-card.visible,
.business-card.visible,
.about-text.visible,
.about-stats.visible,
.contact-info.visible,
.contact-form.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card.visible:nth-child(1) { animation-delay: 0.1s; }
.feature-card.visible:nth-child(2) { animation-delay: 0.2s; }
.feature-card.visible:nth-child(3) { animation-delay: 0.3s; }
.feature-card.visible:nth-child(4) { animation-delay: 0.4s; }
.feature-card.visible:nth-child(5) { animation-delay: 0.5s; }
.feature-card.visible:nth-child(6) { animation-delay: 0.6s; }

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  line-height: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #374151;
}

.form-group input {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.submit-button {
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.2s;
}

.submit-button:hover {
  background-color: #1d4ed8;
}

.testimonial-card.visible:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card.visible:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card.visible:nth-child(3) { animation-delay: 0.3s; }

.client-card.visible:nth-child(1) { animation-delay: 0.1s; }
.client-card.visible:nth-child(2) { animation-delay: 0.2s; }
.client-card.visible:nth-child(3) { animation-delay: 0.3s; }
.client-card.visible:nth-child(4) { animation-delay: 0.4s; }
.client-card.visible:nth-child(5) { animation-delay: 0.5s; }
.client-card.visible:nth-child(6) { animation-delay: 0.6s; }

.business-card.visible:nth-child(1) { animation-delay: 0.1s; }
.business-card.visible:nth-child(2) { animation-delay: 0.2s; }
.business-card.visible:nth-child(3) { animation-delay: 0.3s; }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Button focus states */
button:focus {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

.jobs-table td {
  padding: 1.2rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}

.jobs-table tr:last-child td {
  border-bottom: none;
}

.jobs-table tr:hover {
  background: #f8fafc;
}

.job-role {
  font-weight: 600;
  color: #1f2937;
  font-size: 1.1rem;
}

.job-tech {
  color: #6b7280;
  font-size: 0.95rem;
}

.job-location {
  color: #374151;
  font-weight: 500;
}

.apply-btn {
  background: #10b981;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.apply-btn:hover {
  background: #059669;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .jobs {
    padding: 3rem 1rem;
  }
  
  .jobs .section-title {
    font-size: 2rem;
  }
  
  .jobs-table-container {
    overflow-x: auto;
  }
  
  .jobs-table {
    min-width: 600px;
  }
  
  .jobs-table th,
  .jobs-table td {
    padding: 1rem;
  }
  
  .job-role {
    font-size: 1rem;
  }
  
  .job-tech {
    font-size: 0.85rem;
  }
}

/* Jobs Section */
.jobs {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.jobs .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.jobs .section-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.jobs .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.jobs-table-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.jobs-table {
  width: 100%;
  border-collapse: collapse;
}

.jobs-table th {
  background: #4f46e5;
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pricing-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card.popular {
  border-color: #4f46e5;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4f46e5;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4f46e5;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
  margin-left: 0.5rem;
}

.pricing-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
  font-size: 0.95rem;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.feature-icon {
  color: #10b981;
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.pricing-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, rgb(102, 126, 234), rgb(118, 75, 162));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: linear-gradient(135deg, rgb(91, 113, 210), rgb(106, 67, 145));
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(102, 126, 234, 0.3);
}

.pricing-card.popular .pricing-button {
  background: linear-gradient(135deg, rgb(102, 126, 234), rgb(118, 75, 162));
}

.pricing-card.popular .pricing-button:hover {
  background: linear-gradient(135deg, rgb(91, 113, 210), rgb(106, 67, 145));
  box-shadow: 0 10px 15px -3px rgba(102, 126, 234, 0.3);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-icon {
  font-size: 2rem;
}

.guarantee-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.guarantee-content p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  .pricing-guarantee {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

.ContactModal_modalOverlay__mLq5s {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.ContactModal_modalContent__4xRwj {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ContactModal_modalClose__T7DsC {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  line-height: 1;
}

.ContactModal_contactForm__defmz {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ContactModal_formGroup__lvP4i {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ContactModal_formGroup__lvP4i label {
  font-weight: 500;
  color: #374151;
  display: block;
  margin-bottom: 0.25rem;
}

.ContactModal_required__QnJXq {
  color: #ef4444;
  margin-left: 2px;
}

.ContactModal_inputError__tPQYh {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px #ef4444;
}

.ContactModal_errorText__UCSdg {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.ContactModal_formGroup__lvP4i input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background-color: #fff;
}

.ContactModal_formGroup__lvP4i input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.ContactModal_formGroup__lvP4i input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.ContactModal_submitButton__bTJsz {
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.2s;
}

.ContactModal_submitButton__bTJsz:hover {
  background-color: #1d4ed8;
}

/* Status Message Styles */
.ContactModal_statusMessage__eq9-C {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
}

.ContactModal_statusMessage__eq9-C.ContactModal_success__I5e8h {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #34d399;
}

.ContactModal_statusMessage__eq9-C.ContactModal_error__KoQ4H {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #f87171;
}

.ContactModal_pricingButton__yeIiU {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, rgb(102, 126, 234), rgb(118, 75, 162));
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ContactModal_pricingButton__yeIiU:hover:not(:disabled) {
  background: linear-gradient(135deg, rgb(91, 113, 210), rgb(106, 67, 145));
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(102, 126, 234, 0.3);
}

.ContactModal_pricingButton__yeIiU:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* Institute Student Modal - Scoped Styles */
.institute-student-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.institute-student-modal .modal-container {
  background: white;
  border-radius: 16px;
  width: 95vw !important;
  max-width: 95vw !important;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal Header */
.institute-student-modal .modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.institute-student-modal .header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.institute-student-modal .student-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.institute-student-modal .avatar-text {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.institute-student-modal .header-info h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.institute-student-modal .header-info p {
  margin: 4px 0 0 0;
  font-size: 14px;
  opacity: 0.9;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.institute-student-modal .close-button {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.institute-student-modal .close-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Modal Content */
.institute-student-modal .modal-content {
  padding: 32px;
  max-height: calc(90vh - 140px);
  overflow-y: auto;
  width: 80vw !important;
  max-width: 95vw !important;
  
}

.institute-student-modal .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
  gap: 32px;
}

/* Section Styling */
.institute-student-modal .section {
  margin-bottom: 32px;
}

.institute-student-modal .section-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 16px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.institute-student-modal .section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Contact & Education */
.institute-student-modal .contact-details,
.institute-student-modal .educational-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.institute-student-modal .contact-item,
.institute-student-modal .edu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #667eea;
}

/* Skills */
.institute-student-modal .skills-container {
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px;
}

.institute-student-modal .skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.institute-student-modal .skill-tag {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Evaluation */
.institute-student-modal .evaluation-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.institute-student-modal .eval-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Strengths & Weaknesses */
.institute-student-modal .strengths-weaknesses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
  gap: 24px;
}

.institute-student-modal .strength-item {
  background: #f0fdf4;
  border-left: 3px solid #22c55e;
}

.institute-student-modal .weakness-item {
  background: #fef2f2;
  border-left: 3px solid #ef4444;
}

/* Footer */
.institute-student-modal .modal-footer {
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
}

.institute-student-modal .close-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .institute-student-modal .modal-container {
    width: 95%;
    margin: 20px;
  }

  .institute-student-modal .content-grid,
  .institute-student-modal .strengths-weaknesses-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .institute-student-modal .modal-header {
    padding: 16px;
  }

  .institute-student-modal .header-info h2 {
    font-size: 20px;
  }

  .institute-student-modal .modal-content {
    padding: 20px;
  }
}

/* Scrollbar Styling */
.institute-student-modal .modal-content::-webkit-scrollbar {
  width: 6px;
}

.institute-student-modal .modal-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.institute-student-modal .modal-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.institute-student-modal .modal-content::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
/* DashboardStats.module.css */
.DashboardStats_dashboardStats__wLIXM {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
    gap: 16px;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  
  .DashboardStats_statCard__pvCp6 {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-left: 3px solid #4a2b8f;
  }
  
  .DashboardStats_statValue__qslG7 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 8px 0 4px;
    font-family: 'Inter', sans-serif;
  }
  
  .DashboardStats_statLabel__n5H36 {
    font-size: 0.875rem;
    color: #718096;
    font-family: 'Inter', sans-serif;
  }
  
  /* Responsive styles */
  @media (max-width: 1024px) {
    .DashboardStats_dashboardStats__wLIXM {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .DashboardStats_dashboardStats__wLIXM {
      grid-template-columns: 1fr;
    }
    
    .DashboardStats_statCard__pvCp6 {
      padding: 16px;
    }
    
    .DashboardStats_statValue__qslG7 {
      font-size: 1.25rem;
    }
  }
/* Job Creation Modal Styles */
:root {
  --primary-color: #1890ff;
  --primary-hover: #40a9ff;
  --text-color: #000000;
  --border-color: #d9d9d9;
  --error-color: #ff4d4f;
  --disabled-color: #d1d5db;
  --background-light: #f9fafb;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --red-500: #ef4444;
  --red-100: #fee2e2;
  --white: #ffffff;
}

/* Set default text color for all elements */
* {
  color: #000000;
  color: var(--text-color);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* Medium size modal */
.modal-content.medium-modal {
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-content,
  .modal-content.medium-modal {
    width: 95%;
    max-height: 90vh;
  }
}

/* Modal Header */
.modal-header {
select,
textarea,
.enhanced-dropdown {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background-color: #fff;
  color: #000000;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
}
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #1890ff !important;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2) !important;
  outline: none !important;
}

/* Enhanced Dropdown */
.enhanced-dropdown {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}

.enhanced-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enhanced-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
}

.enhanced-dropdown.open .enhanced-dropdown-options {
  display: block;
}

.enhanced-dropdown-option {
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.enhanced-dropdown-option:hover {
  background: #f5f5f5;
}

.enhanced-dropdown-option.selected {
  background: #e6f7ff;
  color: #1890ff;
}

/* Form Field Enhancements */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #000000;
  font-size: 0.95rem;
}

/* Make sure all inputs have visible borders */
input, select, textarea {
  border: 1px solid #d9d9d9 !important;
  border-radius: 4px !important;
  padding: 10px 12px !important;
  width: 100% !important;
  font-size: 0.95rem !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

input:focus, select:focus, textarea:focus {
  border-color: #1890ff !important;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2) !important;
  outline: none !important;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Technology Rows */
.technology-rows {
  margin-bottom: 16px;
}

.technology-row {
  display: grid;
  grid-template-columns: 1fr 120px 100px;
  grid-gap: 1rem;
  gap: 1rem;
  padding: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s;
}

.technology-row:last-child {
  border-bottom: none;
}

.technology-row:hover {
  background-color: #f9fafb;
}

.technology-row .form-group {
  margin: 0;
}

.percentage-input {
  position: relative;
  max-width: 80px;
}

.percentage-input input {
  padding-right: 30px;
  text-align: right;
}

.percentage-symbol {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #4b5563;
  font-weight: 500;
  pointer-events: none;
}

.action-buttons {
  display: flex;
  align-items: center;
  height: 100%;
}

.remove-button {
  background: none;
  color: #ef4444;
  border: none;
  padding: 0.375rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: background-color 0.2s;
}

.remove-button:hover {
  background-color: #fee2e2;
}

.remove-button:disabled {
  color: #d1d5db;
  cursor: not-allowed;
  background: transparent;
}

.total-percentage {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  font-weight: 500;
}

.total-value {
  font-weight: 600;
  color: #1a237e;
  min-width: 40px;
  text-align: right;
}

.hint-text {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #4b5563;
  background-color: #f0f9ff;
}

/* Interview Focus Areas Section */
.form-section {
  margin-bottom: 1.5rem;
  background: #ffffff;
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h3 {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-description {
  color: #6b7280;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.add-focus-area-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #4f46e5;
  background-color: var(--indigo-600);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 0.5rem;
}

.add-focus-area-btn:hover:not(:disabled) {
  background-color: #4338ca;
  background-color: var(--indigo-700);
}

.add-focus-area-btn:disabled {
  background-color: #6b7280;
  background-color: var(--gray-500);
  cursor: not-allowed;
  opacity: 0.7;
}

.plus-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.technology-grid {
  display: flex;
  flex-direction: column;
  /* grid-template-columns: 1fr 120px 80px; */
  /* gap: 1rem; */
  margin-bottom: 1rem;
  align-items: start;
}

.intervew-grid-header {
  font-weight: 600;
  color: #374151;
  color: var(--gray-700);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.technology-row {
  display: flex;
  width:100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}

.technology-row .form-group {
  margin-bottom: 0;
}

.technology-row input[type="text"],
.technology-row input[type="number"] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.technology-row input:focus {
  border-color: #4f46e5;
  border-color: var(--indigo-600);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
  outline: none;
}

.technology-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.remove-tech-btn {
  background: none;
  border: none;
  color: #ef4444;
  color: var(--red-500);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.interview-Creation-form-section{
  display: flex;
  flex-direction: column;
}
.interview-Creation-section-header{
  display: flex;
  flex-direction: column;
}

.remove-tech-btn:hover {
  background-color: #fee2e2;
  background-color: var(--red-100);
}

.remove-tech-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.total-percentage {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid #e5e7eb;
  border-top: 1px solid var(--gray-200);
  margin-top: 1rem;
  width: 100%;
}

.total-label {
  font-weight: 500;
  margin-right: 1rem;
  color: #4b5563;
  color: var(--gray-600);
}

.total-value {
  font-weight: 600;
  color: #111827;
  min-width: 40px;
  text-align: right;
}

.error-message {
  color: #ef4444;
  color: var(--red-500);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  grid-column: 1 / -1;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .technology-grid {
    grid-template-columns: 1fr 1fr 60px;
    gap: 0.75rem;
  }
  
  .grid-header {
    font-size: 0.75rem;
  }
  
  .section-header h3 {
    font-size: 1rem;
  }
  
  .section-description {
    font-size: 0.8125rem;
  }
}

.submit-button {
  background: #1890ff;
  color: white;
  border: 1px solid #1890ff;
  min-width: 120px;
}


.submit-button:hover {
  background: #40a9ff;
  border-color: #40a9ff;
}

.submit-button:disabled {
  background: #bae7ff;
  border-color: #91d5ff;
  cursor: not-allowed;
}

/* Add Focus Area Button */
.add-focus-area-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1890ff;
  color: var(--primary-color);
  border: 1px solid #1890ff;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.add-focus-area-btn:hover {
  background: #f0f9ff;
  border-color: #40a9ff;
  border-color: var(--primary-hover);
  color: #40a9ff;
  color: var(--primary-hover);
}

.add-focus-area-btn:disabled {
  color: #d1d5db;
  color: var(--disabled-color);
  border-color: #d1d5db;
  border-color: var(--disabled-color);
  background: #ffffff;
  cursor: not-allowed;
}

.add-focus-area-btn .plus-icon {
  margin-right: 6px;
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1;
}

/* Error States */
.error {
  border-color: #ff4d4f !important;
}

.error-message {
  color: #ff4d4f;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .technology-row {
    flex-direction: column;
  }
  
  .percentage-group {
    width: 100%;
  }
  
  .modal-content {
    max-height: 95vh;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .cancel-button,
  .submit-button {
    width: 100%;
  }
}


    .company-interviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      grid-gap: 24px;
      gap: 24px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }
  
    .interview-card {
      background: white;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      transition: transform 0.2s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
    }
  
    .interview-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }
  
    .card-content {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
  
    .card-header {
      padding: 24px;
      border-bottom: 1px solid #e2e8f0;
      position: relative;
    }
  
    .status-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      padding: 4px 12px;
      border-radius: 16px;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
  
    .status-badge.active {
      background-color: rgba(16, 185, 129, 0.1);
      color: #10b981;
    }
  
    .status-badge.draft {
      background-color: rgba(245, 158, 11, 0.1);
      color: #f59e0b;
    }
  
    .status-badge:not(.active):not(.draft) {
      background-color: rgba(156, 163, 175, 0.1);
      color: #9ca3af;
    }
  
    .card-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: #1a202c;
      margin: 0 0 12px 0;
      padding-right: 32px;
    }
  
    .experience {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      color: #4a5568;
      font-size: 0.875rem;
      margin-top: 20px;
    }
  
    .experience-icon {
      margin-right: 8px;
      font-size: 1.125rem;
    }
  
    .technologies-section {
      margin: 16px 0 8px;
    }
  
    .section-title {
      font-size: 0.875rem;
      color: #4a5568;
      margin: 0 0 8px 0;
    }
  
    .technologies-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
  
    .interview-tech-tag {
      background-color:#4f46e5;
      color: white;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 0.7rem;
      font-weight: 500;
    }
  
    .more-tag {
      background-color: rgba(156, 163, 175, 0.1);
      color: #6b7280;
    }
  
    .card-footer {
      padding: 16px;
      background-color: #f8fafc;
      border-top: 1px solid #e2e8f0;
      margin-top: auto;
      display: flex;
      justify-content: space-between;

    }
  
    .view-details-btn {
      background: transparent;
      border: 1px solid #c7d2fe;
      color: #4f46e5;
      padding: 6px 16px;
      border-radius: 6px;
      font-weight: 500;
      font-size: 0.8rem;
      cursor: pointer;
      transition: all 0.2s;
    }
    .edit-details-btn {
        background: #4f46e5;
        border: 1px solid #c7d2fe;
        color: white;
        padding: 6px 16px;
        border-radius: 6px;
        font-weight: 500;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.2s;
      }
  
    .view-details-btn:hover {
      background-color: #eef2ff;
      border-color: #a5b4fc;
    }
  
    @media (min-width: 900px) {
      .company-interviews-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  
    @media (max-width: 899px) and (min-width: 600px) {
      .company-interviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  
    @media (max-width: 599px) {
      .company-interviews-grid {
        grid-template-columns: 1fr;
      }
    }
  
    
.job-postings-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  overflow: hidden;
}

.job-postings-header {
  padding: 20px;
  background: white;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.job-postings-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1976d2;
  margin: 0;
}

.job-filters-container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin: 16px;
  border: 1px solid #e9ecef;
}

.filters-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #495057;
  font-weight: 600;
}

.filter-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  flex: 1 1;
  min-width: 250px;
}

.search-input-container {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

.status-select {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 14px;
  background-color: white;
  -webkit-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%236c757d%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpolyline points=%276 9 12 15 18 9%27%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.clear-filters-btn {
  padding: 10px 16px;
  border: 1px solid #6c757d;
  border-radius: 8px;
  background: white;
  color: #495057;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.clear-filters-btn:hover {
  background: #f8f9fa;
  border-color: #495057;
}

.active-filters {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}

.active-filters-label {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  background: #e3f2fd;
  color: #1976d2;
  border: 1px solid #bbdefb;
}

.filter-chip-remove {
  margin-left: 6px;
  cursor: pointer;
  color: inherit;
}

/* Table Styles */
.jobs-table-container {
  overflow-x: auto;
  margin: 0 16px 16px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.jobs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.jobs-table th {
  background-color: #f8f9fa;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: #495057;
  border-bottom: 2px solid #e9ecef;
}

.jobs-table td {
  padding: 16px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
}

.jobs-table tr:last-child td {
  border-bottom: none;
}

.jobs-table tr:hover {
  background-color: #f8f9fa;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

.status-active {
  background-color: #e8f5e8;
  color: #2e7d32;
}

.status-draft {
  background-color: #fff3e0;
  color: #f57c00;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 8px;
}

.btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-primary {
  background: linear-gradient(45deg, #1976d2, #1565c0);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #1565c0, #0d47a1);
}

.btn-outline {
  background: white;
  border: 1px solid #1976d2;
  color: #1976d2;
}

.btn-outline:hover {
  background: #f8f9fa;
}

/* Empty State */
.empty-state {
  padding: 40px 20px;
  text-align: center;
  color: #6c757d;
}

.empty-state p {
  margin-bottom: 16px;
}

/* Loading State */
.loading-state {
  padding: 40px 20px;
  text-align: center;
}

.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1976d2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .job-postings-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .filter-group {
    width: 100%;
  }
  
  .clear-filters-btn {
    width: 100%;
    justify-content: center;
  }
}
.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.navbar-brand:hover {
  opacity: 0.9;
}

.nav-icon {
  font-size: 1.5rem;
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logout-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.logout-icon {
  font-size: 1.1rem;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 0.7rem 1rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logout-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .logout-btn span {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.6rem 0.8rem;
  }
  
  .navbar-brand {
    gap: 0.7rem;
  }
  
  .nav-icon {
    font-size: 1.3rem;
  }
}
.talent-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.talent-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(45deg, #1976d2, #1565c0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.2);
}

.talent-icon {
  color: white;
  font-size: 2.5rem;
}

.talent-content {
  max-width: 800px;
}

.talent-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.talent-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
  max-width: 700px;
}

/* Responsive Design */
@media (min-width: 600px) {
  .talent-header {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }

  .talent-avatar {
    width: 2.5rem;
    height: 2.5rem;
  }

  .talent-title {
    font-size: 1.5rem;
  }

  .talent-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 900px) {
  .talent-header {
    gap: 3rem;
  }

  .talent-avatar {
    width: 2.5rem;
    height: 2.5rem;
  }

  .talent-icon {
    font-size: 1.5rem;
  }
}
.credit-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
}

.credit-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.credit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.card-icon.consumed {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.card-icon.available {
  background: linear-gradient(135deg, #10b981, #059669);
}

.card-content {
  flex: 1 1;
}

.card-content h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7280;
}

.credit-amount {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .credit-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .credit-cards-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2rem auto;
  }

  .credit-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .credit-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .card-icon {
    width: 42px;
    height: 42px;
  }

  .credit-amount {
    font-size: 1.5rem;
  }
}
.candidate-table-container {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background: white;
}

/* Scrollable Table Wrapper */
.candidate-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Main Table */
.candidate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

/* Table Head */
.candidate-table th {
  background-color: #f8f9fa;
  color: #495057;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 2px solid #e9ecef;
}

/* Table Cells */
.candidate-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
}

/* Table Rows */
.candidate-row:hover {
  background-color: #f8f9fa;
}

/* Candidate Info */
.candidate-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.candidate-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #1976d2, #1565c0);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.candidate-name {
  font-weight: 500;
  color: #212529;
}

/* Location Cell */
.location-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6c757d;
}

/* Skills */
.skills-container {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.skill-tag {
  background-color: #e9ecef;
  color: #495057;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  white-space: nowrap;
}

.skill-more {
  background-color: #e9ecef;
  color: #6c757d;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* Role Cell */
.role-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #212529;
}

/* Level Badge */
.level-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #e3f2fd;
  color: #1976d2;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Action Button */
.action-cell {
  text-align: center;
}

.view-button {
  background: linear-gradient(45deg, #1976d2, #1565c0);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.view-button:hover {
  background: linear-gradient(45deg, #1565c0, #0d47a1);
}

/* Loading State */
.loading-cell {
  padding: 40px 0;
  text-align: center;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #1976d2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* No Results */
.no-results {
  padding: 40px 0;
  text-align: center;
}

.no-results p {
  margin-bottom: 16px;
  color: #6c757d;
}

.clear-filters {
  background: none;
  border: 1px solid #1976d2;
  color: #1976d2;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.clear-filters:hover {
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .candidate-table th,
  .candidate-table td {
    padding: 10px 12px;
  }

  .candidate-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .view-button {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .candidate-table th,
  .candidate-table td {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .skill-tag,
  .skill-more {
    font-size: 0.7rem;
    padding: 1px 6px;
  }

  .view-button {
    font-size: 0.75rem;
    padding: 3px 6px;
  }
}
/* Simplified Skills */
.skills-simple {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.skill-simple {
  background: #f0f4f8;
  color: #334e68;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  border-left: 2px solid #1976d2;
}

.skill-count {
  color: #6c757d;
  font-size: 0.8rem;
  margin-left: 4px;
}

/* For smaller screens */
@media (max-width: 768px) {
  .skill-simple {
    font-size: 0.75rem;
    padding: 1px 6px;
  }
  
  .skill-count {
    font-size: 0.75rem;
  }
}

.company-profile-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.form-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  overflow: hidden;
}

.form-section-header {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-section-icon {
  font-size: 1.5rem;
  margin-right: 12px;
  opacity: 0.9;
}

.form-section h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a5568;
}


/* Responsive Design */
@media (max-width: 768px) {
  .company-profile-form {
    padding: 1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .form-section-header {
    padding: 1rem;
  }

  input {
    padding: 0.65rem 0.75rem 0.65rem 2.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .form-section-header {
    flex-direction: column;
    text-align: center;
  }

  .form-section-icon {
    margin: 0 0 8px 0;
  }

  .input-icon {
    left: 10px;
    font-size: 1rem;
  }
}
/* Update the input icon styles */
.input-with-icon {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 1.1rem;
  z-index: 1;
  pointer-events: none;
}

/* Input with icon container */
.input-with-icon {
  position: relative;
  width: 100%;
  margin-bottom: 1rem; /* Add space between form groups */
}

/* Icon styling */
.input-icon {
  position: absolute;
  left: 15px; /* Increased from 12px */
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 1.1rem;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8; /* Slightly transparent */
}

/* Base input styling */
input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 3rem; /* Increased left padding for icon */
  font-size: 0.95rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: white;
  color: #2d3748;
  transition: all 0.2s ease;
}

/* Text indentation for all input types */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"] {
  text-indent: 5px; /* Reduced from 8px */
}

/* Disabled state */
input:disabled {
  background-color: #f8fafc;
  color: #a0aec0;
  cursor: not-allowed;
  padding-left: 3rem; /* Match the left padding */
}

/* Focus state */
input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  padding-left: 3rem; /* Keep consistent padding when focused */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .input-icon {
    left: 12px; /* Slightly less padding on mobile */
    font-size: 1rem;
  }
  
  input {
    padding: 0.75rem 0.9rem 0.75rem 2.75rem; /* Adjusted for mobile */
    font-size: 0.9rem;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="url"] {
    text-indent: 3px; /* Less indentation on mobile */
  }
}
/* Requirements & Skills Section */
.requirements-skills-card {
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.requirements-skills-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px);
}

.requirements-skills-header {
  background:  rgb(248, 249, 250) !important;
  color: white !important;
  padding: 16px 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-skills-header .MuiCardHeader-title {
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.requirements-skills-content {
  padding: 24px !important;
  background-color: #ffffff;
}

.section-container {
  margin-bottom: 28px;
  background: #f8f9ff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #eef2ff;
}

.section-title {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #4b5563 !important;
  margin-bottom: 14px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.requirement-input {
  margin-bottom: 12px !important;
}

.requirement-input .MuiOutlinedInput-root {
  border-radius: 8px !important;
  background-color: white;
}

.requirement-input .MuiOutlinedInput-input {
  padding: 12px 16px !important;
  font-size: 0.95rem;
}

.requirement-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.requirement-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.requirement-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #c7d2fe;
}

.requirement-text {
  flex: 1 1;
  font-size: 0.95rem;
  color: #374151;
}

.remove-button {
  color: #9ca3af !important;
  transition: all 0.2s ease;
  padding: 4px !important;
  margin-left: 8px !important;
}

.remove-button:hover {
  color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

.skills-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.skills-autocomplete {
  margin-bottom: 16px !important;
}

.skills-autocomplete .MuiOutlinedInput-root {
  border-radius: 8px !important;
  background-color: white;
}

.skills-autocomplete .MuiChip-root {
  margin: 4px 4px 4px 0;
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 500;
  border-radius: 6px;
}

.skills-autocomplete .MuiChip-deleteIcon {
  color: #818cf8;
}

.skills-autocomplete .MuiChip-deleteIcon:hover {
  color: #4f46e5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .requirements-skills-content {
    padding: 16px !important;
  }
  
  .section-container {
    padding: 16px;
  }
  
  .section-title {
    font-size: 0.85rem !important;
  }
  
  .requirement-item {
    padding: 10px 12px;
  }
  
  .requirement-text {
    font-size: 0.9rem;
  }
}

/* Locations & Work Mode Section */
.locations-workmode-card {
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  width: 100%;
}

.locations-workmode-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px);
}

.locations-workmode-header {
  background: #f8f9fa !important;
  padding: 16px 24px !important;
  border-bottom: 1px solid #e0e0e0;
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.locations-workmode-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.locations-workmode-content {
  padding: 24px !important;
  background-color: #ffffff;
}

.work-mode-select {
  width: 100%;
  max-width: 250px;
}

.work-mode-select .MuiOutlinedInput-root {
  border-radius: 8px !important;
  background-color: white;
}

.experience-fields {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.experience-field {
  flex: 1 1;
  min-width: 200px;
}

.experience-field .MuiOutlinedInput-root {
  border-radius: 8px !important;
}

.locations-autocomplete {
  margin-top: 16px;
}

.locations-autocomplete .MuiOutlinedInput-root {
  border-radius: 8px !important;
}

.locations-autocomplete .MuiChip-root {
  margin: 4px 4px 4px 0;
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 500;
  border-radius: 6px;
}

.locations-autocomplete .MuiChip-deleteIcon {
  color: #818cf8;
}

.locations-autocomplete .MuiChip-deleteIcon:hover {
  color: #4f46e5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .locations-workmode-content {
    padding: 16px !important;
  }
  
  .work-mode-select {
    max-width: 100%;
  }
  
  .experience-field {
    min-width: 100%;
  }
}

/* Experience & Education Section */
.experience-education-card {
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 2rem;
}

.experience-education-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px);
}

.experience-education-header {
  background: #f8f9fa !important;
  padding: 16px 24px !important;
  border-bottom: 1px solid #e0e0e0;
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.experience-education-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.experience-education-content {
  padding: 24px !important;
  background-color: #ffffff;
}

.education-fields {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 20px;
}

.education-field {
  width: 100%;
}

.education-field .MuiFormControl-root {
  width: 100%;
}

.education-field .MuiOutlinedInput-root {
  border-radius: 8px !important;
  background-color: white;
}

.education-field .MuiInputLabel-root {
  font-size: 0.9rem;
}

.branches-autocomplete {
  margin-top: 20px;
  width: 100%;
}

.branches-autocomplete .MuiOutlinedInput-root {
  border-radius: 8px !important;
}

.branches-autocomplete .MuiChip-root {
  margin: 4px 4px 4px 0;
  background: #f0fdf4;
  color: #059669;
  font-weight: 500;
  border-radius: 6px;
}

.branches-autocomplete .MuiChip-deleteIcon {
  color: #34d399;
}

.branches-autocomplete .MuiChip-deleteIcon:hover {
  color: #059669;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .experience-education-content {
    padding: 16px !important;
  }
  
  .education-fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .education-field {
    width: 100%;
  }
}

/* Main container */
.JobPostingView_container__LMge3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: #f8fafc;
  min-height: 100vh;
}

/* Header section */
.JobPostingView_header__JoYIT {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.JobPostingView_title__hPVIr {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Search and filter */
.JobPostingView_searchContainer__ATn4o {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.JobPostingView_searchInput__dmaGu {
  flex: 1 1;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.JobPostingView_searchInput__dmaGu:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.JobPostingView_filterButton__vujUU {
  padding: 0 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #4a5568;
  transition: all 0.2s;
}

.JobPostingView_filterButton__vujUU:hover {
  background-color: #f7fafc;
  border-color: #cbd5e0;
}

/* Job grid and cards */
.JobPostingView_jobGrid__wHSXB {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.JobPostingView_jobCard__WgBO3 {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.JobPostingView_jobCard__WgBO3:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Job header */
.JobPostingView_jobHeader__ujBvm {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f4f8;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.JobPostingView_jobTitleRow__Toi2F {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.JobPostingView_jobTitle__zAHDx {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #1a202c;
}

.JobPostingView_jobTitle__zAHDx a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.JobPostingView_jobTitle__zAHDx a:hover {
  color: #4a6cf7;
}

.JobPostingView_jobType__Esfp9 {
  background: #e6f7ff;
  color: #1890ff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  margin-left: 1rem;
}

.JobPostingView_companyInfo__gtojq {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #4a5568;
}

.JobPostingView_companyName__4UAOl {
  font-weight: 600;
  color: #2d3748;
}

.JobPostingView_location__Pzs8z {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.JobPostingView_icon__lDEKS {
  color: #718096;
  font-size: 0.9rem;
}

/* Job meta information */
.JobPostingView_jobMeta__M0v\+k {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
}

.JobPostingView_metaItem__n9xH8 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4a5568;
  background: #f7fafc;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 500;
}

/* Job description section */
.JobPostingView_jobDescription__9Kt7x {
  padding: 1.5rem;
  color: #4a5568;
  line-height: 1.7;
}

.JobPostingView_section__zFyd\+ {
  margin-bottom: 1.5rem;
}

.JobPostingView_section__zFyd\+:last-child {
  margin-bottom: 0;
}

.JobPostingView_sectionTitle__HE2hH {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #edf2f7;
}

.JobPostingView_sectionIcon__baqCa {
  color: #4a6cf7;
  font-size: 1rem;
}

.JobPostingView_jobDetailsList__miRsK {
  margin: 0 0 0 1.25rem;
  padding: 0;
  list-style-type: none;
}

.JobPostingView_jobDetailsList__miRsK li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.JobPostingView_jobDetailsList__miRsK li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4a6cf7;
  font-weight: bold;
}

/* Skills and benefits */
.JobPostingView_skillsContainer__I\+E7x {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.JobPostingView_skillChip__0pwAG {
  padding: 0.35rem 0.9rem;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.JobPostingView_requiredSkill__5v-yd {
  background-color: #ebf5ff;
  color: #1a73e8;
  border: 1px solid #d0e3ff;
}

.JobPostingView_preferredSkill__MgeHL {
  background-color: #f0fdf4;
  color: #059669;
  border: 1px solid #bbf7d0;
}

.JobPostingView_skillLevel__o6PNq {
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: normal;
}

.JobPostingView_benefitsContainer__L1FDn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.JobPostingView_benefitChip__\+CmCP {
  background-color: #f8fafc;
  color: #4a5568;
  padding: 0.35rem 0.9rem;
  border-radius: 16px;
  font-size: 0.8rem;
  border: 1px solid #e2e8f0;
}

/* Job footer */
.JobPostingView_jobFooter__ohVQy {
  padding: 1rem 1.5rem;
  border-top: 1px solid #f0f4f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}

.JobPostingView_postedDate__iMg1k {
  font-size: 0.85rem;
  color: #718096;
}

.JobPostingView_actionButtons__WCIBi {
  display: flex;
  gap: 0.75rem;
}

.JobPostingView_applyButton__FCvDt {
  background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}

.JobPostingView_applyButton__FCvDt:hover {
  background: linear-gradient(135deg, #3b5bdb 0%, #2c4bce 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.JobPostingView_viewDetails__b8nKC {
  background: white;
  color: #4a6cf7;
  border: 1px solid #4a6cf7;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}

.JobPostingView_viewDetails__b8nKC:hover {
  background: #f0f4ff;
  color: #3a56d4;
  border-color: #3a56d4;
}

/* Pagination */
.JobPostingView_pagination__sntFQ {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 0.5rem;
}

.JobPostingView_pageButton__FTX0V {
  padding: 0.6rem 1rem;
  border: 1px solid #e2e8f0;
  background: white;
  color: #4a5568;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
  min-width: 40px;
  text-align: center;
}

.JobPostingView_pageButton__FTX0V:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}

.JobPostingView_pageButton__FTX0V.JobPostingView_active__EoKyi {
  background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
  color: white;
  border-color: transparent;
}

/* Loading and error states */
.JobPostingView_loading__A3BDj {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  font-size: 1.1rem;
  color: #4a5568;
}

.JobPostingView_noResults__u2X0f {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 8px;
  color: #718096;
  font-size: 1.1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.JobPostingView_error__Kzndg {
  color: #e53e3e;
  text-align: center;
  padding: 2rem;
  background: #fff5f5;
  border-radius: 8px;
  margin: 1rem 0;
  border: 1px solid #fed7d7;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .JobPostingView_jobGrid__wHSXB {
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  }
  
  .JobPostingView_searchContainer__ATn4o {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .JobPostingView_jobHeader__ujBvm {
    padding: 1.25rem;
  }
  
  .JobPostingView_jobDescription__9Kt7x {
    padding: 1.25rem;
  }
  
  .JobPostingView_jobFooter__ohVQy {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .JobPostingView_actionButtons__WCIBi {
    width: 100%;
  }
  
  .JobPostingView_applyButton__FCvDt,
  .JobPostingView_viewDetails__b8nKC {
    flex: 1 1;
    padding: 0.75rem;
  }
  
  .JobPostingView_jobTitleRow__Toi2F {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .JobPostingView_jobType__Esfp9 {
    margin-left: 0;
    align-self: flex-start;
  }
}

/* Job Table Styles */
.job-table-container {
  overflow-x: auto;
  margin-top: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background: white;
}

.job-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.job-table thead th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

.job-table thead th:first-child {
  border-top-left-radius: 12px;
}

.job-table thead th:last-child {
  border-top-right-radius: 12px;
}

.job-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid #f3f4f6;
}

.job-table tbody tr:hover {
  background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.job-table tbody tr:last-child {
  border-bottom: none;
}

.job-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.job-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.job-table td {
  padding: 20px;
  vertical-align: middle;
  border: none;
  position: relative;
}

.job-table td::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: height 0.3s ease;
}

.job-table tbody tr:hover td::before {
  height: 70%;
}

/* Role Cell */
.role-cell {
  min-width: 220px;
  max-width: 280px;
}

.role-title {
  font-weight: 700;
  color: #1f2937;
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.role-details {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Company Cell */
.company-cell {
  min-width: 200px;
  max-width: 240px;
}

.company-name {
  font-weight: 600;
  color: #374151;
  font-size: 15px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-name::before {
  content: '🏢';
  font-size: 16px;
}

.company-salary {
  font-size: 13px;
  color: #059669;
  font-weight: 600;
  background: linear-gradient(90deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

/* Location Cell */
.location-cell {
  min-width: 160px;
  max-width: 200px;
}

.location-text {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
  gap: 8px;
}

.location-icon {
  color: #ef4444;
  font-size: 16px;
}

/* Skills Cell */
.skills-cell {
  min-width: 300px;
  max-width: 400px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.skill-tag:hover::before {
  left: 100%;
}

.skill-tag.matched {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-color: #047857;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.skill-tag.unmatched {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #374151;
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.skill-tag.more {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  color: #4338ca;
  border-color: #6366f1;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
  font-weight: 700;
}

/* Actions Cell */
.actions-cell {
  text-align: center;
  min-width: 80px;
  max-width: 100px;
}

.actions-btn {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border: none;
  color: #374151;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.actions-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .job-table {
    font-size: 13px;
  }
  
  .job-table thead th {
    padding: 12px 16px;
    font-size: 12px;
  }
  
  .job-table td {
    padding: 16px;
  }
  
  .role-cell {
    min-width: 180px;
    max-width: 220px;
  }
  
  .company-cell {
    min-width: 160px;
    max-width: 200px;
  }
  
  .location-cell {
    min-width: 140px;
    max-width: 180px;
  }
  
  .skills-cell {
    min-width: 250px;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .job-table-container {
    border-radius: 8px;
  }
  
  .job-table thead th:first-child {
    border-top-left-radius: 8px;
  }
  
  .job-table thead th:last-child {
    border-top-right-radius: 8px;
  }
  
  .job-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
  }
  
  .job-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
  }
  
  .job-table {
    font-size: 12px;
  }
  
  .job-table thead th {
    padding: 10px 12px;
    font-size: 11px;
  }
  
  .job-table td {
    padding: 12px;
  }
  
  .role-cell {
    min-width: 150px;
    max-width: 180px;
  }
  
  .company-cell {
    min-width: 140px;
    max-width: 170px;
  }
  
  .location-cell {
    min-width: 120px;
    max-width: 150px;
  }
  
  .skills-cell {
    min-width: 200px;
    max-width: 250px;
  }
  
  .skills-container {
    gap: 4px;
  }
  
  .skill-tag {
    padding: 4px 8px;
    font-size: 11px;
  }
  
  .role-title {
    font-size: 14px;
  }
  
  .company-name {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .job-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
    width: calc(100% + 32px);
  }
  
  .job-table {
    font-size: 11px;
    min-width: 600px;
  }
  
  .job-table thead th {
    padding: 6px 8px;
    font-size: 9px;
    white-space: nowrap;
  }
  
  .job-table td {
    padding: 6px 8px;
  }
  
  .role-cell {
    min-width: 100px;
    max-width: 120px;
  }
  
  .company-cell {
    min-width: 90px;
    max-width: 110px;
  }
  
  .location-cell {
    min-width: 80px;
    max-width: 100px;
  }
  
  .skills-cell {
    min-width: 120px;
    max-width: 150px;
  }
  
  .actions-cell {
    min-width: 60px;
    max-width: 80px;
  }
  
  .skills-container {
    gap: 2px;
  }
  
  .skill-tag {
    padding: 1px 3px;
    font-size: 8px;
    border-radius: 8px;
  }
  
  .role-title {
    font-size: 11px;
  }
  
  .company-name {
    font-size: 11px;
  }
  
  .company-salary {
    font-size: 10px;
    padding: 1px 3px;
  }
  
  .location-text {
    font-size: 10px;
  }
}

@media (max-width: 320px) {
  .job-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -8px;
    padding: 0 8px;
    width: calc(100% + 16px);
  }
  
  .job-table {
    font-size: 9px;
    min-width: 400px;
  }
  
  .job-table thead th {
    padding: 2px 4px;
    font-size: 7px;
    white-space: nowrap;
  }
  
  .job-table td {
    padding: 2px 4px;
  }
  
  .role-cell {
    min-width: 60px;
    max-width: 80px;
  }
  
  .company-cell {
    min-width: 50px;
    max-width: 70px;
  }
  
  .location-cell {
    min-width: 40px;
    max-width: 60px;
  }
  
  .skills-cell {
    min-width: 80px;
    max-width: 100px;
  }
  
  .actions-cell {
    min-width: 40px;
    max-width: 50px;
  }
  
  .skill-tag {
    padding: 0.5px 2px;
    font-size: 7px;
    border-radius: 8px;
  }
  
  .role-title {
    font-size: 10px;
  }
  
  .company-name {
    font-size: 10px;
  }
  
  .company-salary {
    font-size: 9px;
    padding: 0.5px 2px;
  }
  
  .location-text {
    font-size: 9px;
  }
}

/* Custom Dropdown Styles */
.custom-dropdown {
  width: 100%;
  min-width: 200px;
  min-height: 40px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.custom-dropdown:hover {
  border-color: #9ca3af;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.custom-dropdown:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.dropdown-arrow {
  font-size: 12px;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  white-space: nowrap;
}

.dropdown-option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  color: #374151;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-option:hover {
  background-color: #f3f4f6;
}

.dropdown-option input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  accent-color: #667eea;
  cursor: pointer;
}

.dropdown-option span {
  flex: 1 1;
  -webkit-user-select: none;
          user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* Scrollbar styling for dropdown options */
.dropdown-options::-webkit-scrollbar {
  width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Job Modal Styles */
.job-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.job-modal {
  background: white;
  border-radius: 16px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

/* Modal Header */
.job-modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.job-title-section {
  flex: 1 1;
}

.job-title {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.company-name {
  margin: 0;
  font-size: 18px;
  opacity: 0.9;
  font-weight: 400;
}

.job-modal-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.match-percentage {
  background: #10b981;
  padding: 8px 16px;
  border-radius: 20px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.match-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.match-label {
  display: block;
  font-size: 11px;
  opacity: 0.9;
  margin-top: 2px;
}

.close-button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Modal Content */
.job-modal-content {
  flex: 1 1;
  overflow-y: auto;
  padding: 32px;
}

.job-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
  gap: 32px;
  margin-bottom: 32px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Overview Section */
.overview-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.detail-item:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

.detail-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.detail-content {
  flex: 1 1;
}

.detail-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.detail-value {
  font-size: 14px;
  color: #1f2937;
  font-weight: 500;
}

.interview-requirements {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.requirement-item {
  font-size: 13px;
  color: #4b5563;
}

.requirement-status {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 0;
}

.requirement-status.valid {
  color: #10b981;
}

.requirement-status.invalid {
  color: #ef4444;
}

/* Skills Section */
.skills-group {
  margin-bottom: 24px;
}

.skills-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid;
}

.skill-tag.matched {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-color: #047857;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.skill-tag.unmatched {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #374151;
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.skill-check {
  font-size: 12px;
  font-weight: 700;
}

/* Description Section */
.description-section {
  margin-bottom: 32px;
}

.job-description {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

/* Responsibilities and Requirements Grid */
.responsibilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
  gap: 32px;
  margin-bottom: 32px;
}

.responsibilities-list,
.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.responsibility-item,
.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.responsibility-item:hover,
.requirement-item:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

.responsibility-check,
.requirement-check {
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.responsibility-text,
.requirement-text {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

/* Modal Footer */
.job-modal-footer {
  padding: 24px 32px;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cancel-button,
.apply-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.cancel-button {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #374151;
  border: 1px solid #d1d5db;
}

.cancel-button:hover {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  transform: translateY(-1px);
}

.apply-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.apply-button:hover:not(.disabled) {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.apply-button.disabled {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  color: #f3f4f6;
  cursor: not-allowed;
  box-shadow: none;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar styling */
.job-modal-content::-webkit-scrollbar {
  width: 6px;
}

.job-modal-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.job-modal-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.job-modal-content::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .job-modal {
    width: 95%;
    max-height: 95vh;
  }
  
  .job-modal-header {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .job-title {
    font-size: 24px;
  }
  
  .company-name {
    font-size: 16px;
  }
  
  .job-modal-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .job-modal-content {
    padding: 24px;
  }
  
  .job-overview-grid,
  .responsibilities-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .job-modal-footer {
    padding: 20px 24px;
    flex-direction: column;
  }
  
  .cancel-button,
  .apply-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .job-modal {
    width: 98%;
    border-radius: 12px;
  }
  
  .job-modal-header {
    padding: 16px 20px;
  }
  
  .job-title {
    font-size: 20px;
  }
  
  .job-modal-content {
    padding: 20px;
  }
  
  .detail-item {
    padding: 12px;
  }
  
  .section-title {
    font-size: 18px;
  }
}

/* Profile Tab Styles - Modern CSS Design System */

/* Profile Header Section */
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.profile-title-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-icon {
  font-size: 32px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.profile-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.profile-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin: 4px 0 0 0;
}

.profile-edit-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-edit-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.profile-edit-button.save-mode {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.profile-edit-button.save-mode:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Profile Section Cards */
.profile-section {
  background: white;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.2s ease;
}

.profile-section:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Section Headers */
.section-header {
  padding: 24px 32px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

/* Section-specific colors */
.personal-section .section-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.academic-section .section-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.technical-section .section-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.internship-section .section-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.project-section .section-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.section-content {
  padding: 32px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1 1;
}

.section-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 4px 0 0 0;
}

/* Form Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 24px;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  color: #111827 !important;
  background: white;
  transition: all 0.2s ease;
  width: 100%;
  font-weight: 500;
}

.form-input:not(:disabled) {
  border-color: #667eea;
  box-shadow: 0 0 0 1px rgba(102, 126, 234, 0.1);
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
  transform: translateY(-1px);
}

.form-input:disabled {
  background: #f8fafc;
  color: #111827 !important;
  cursor: not-allowed;
  border-color: #e5e7eb;
  opacity: 1;
}

.form-input:disabled:focus {
  outline: none;
  border-color: #e5e7eb;
  box-shadow: none;
}

/* Label icon styling */
.label-icon {
  margin-right: 8px;
  font-size: 16px;
}

/* Custom dropdown styling */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-select {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  color: #111827 !important;
  background: white;
  transition: all 0.2s ease;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27currentColor%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276,9 12,15 18,9%27%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 44px;
  font-weight: 500;
}

.dropdown-select:not(:disabled) {
  border-color: #667eea;
  box-shadow: 0 0 0 1px rgba(102, 126, 234, 0.1);
}

.dropdown-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
  transform: translateY(-1px);
}

.dropdown-select:disabled {
  background: #f8fafc;
  color: #111827 !important;
  cursor: not-allowed;
  border-color: #e5e7eb;
  opacity: 1;
}

.dropdown-select:disabled:focus {
  outline: none;
  border-color: #e5e7eb;
  box-shadow: none;
}

/* Form help text */
.form-help-text {
  font-size: 12px;
  color: #6b7280;
  margin: 4px 0 0 0;
  font-style: italic;
}

/* Full width form group */
.form-group.full-width {
  grid-column: 1 / -1;
}

/* Skills Autocomplete Styles */
.skills-autocomplete {
  position: relative;
}

.skills-input-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skills-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f9fafb;
  margin-bottom: 12px;
}

.skills-select:not(:disabled) {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.skills-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
  transform: translateY(-1px);
}

.skills-select:disabled {
  background: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.7;
}

.skills-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.skills-input:not(:disabled) {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.skills-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
  transform: translateY(-1px);
}

.skills-input:disabled {
  background: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.7;
}

.no-skills {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
}

.selected-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 32px;
  padding: 8px 0;
}

.no-skills {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
  padding: 8px 0;
}

/* Internships section styling */
.internships-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.internships-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.add-internship-btn {
  padding: 10px 20px;
  border: 2px solid #ef4444;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: white;
  color: #ef4444;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-internship-btn:hover:not(:disabled) {
  background: #ef4444;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.add-internship-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #d1d5db;
  color: #9ca3af;
}

.internships-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.internship-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
}

.internship-card:hover {
  background: #f1f5f9;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.internship-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.internship-position {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1 1;
}

.internship-duration {
  font-size: 12px;
  color: #6b7280;
  background: #e5e7eb;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.internship-description {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

.no-internships {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
  text-align: center;
  padding: 32px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px dashed #d1d5db;
}

/* Projects section styling */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.projects-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.add-project-btn {
  padding: 10px 20px;
  border: 2px solid #8b5cf6;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: white;
  color: #8b5cf6;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-project-btn:hover:not(:disabled) {
  background: #8b5cf6;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.add-project-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #d1d5db;
  color: #9ca3af;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
}

.project-card:hover {
  background: #f1f5f9;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.project-header {
  margin-bottom: 12px;
}

.project-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.project-description {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-tag {
  padding: 4px 8px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
}

.no-projects {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
  text-align: center;
  padding: 32px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px dashed #d1d5db;
}

.form-input::placeholder {
  color: #9ca3af;
}

/* Input with icon */
.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #6b7280;
  z-index: 2;
}

.form-input.with-icon {
  padding-left: 48px;
}

/* Select Dropdown */
.form-select {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  color: #1f2937;
  background: white;
  transition: all 0.2s ease;
  width: 100%;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-select:disabled {
  background: #f8fafc;
  color: #6b7280;
  cursor: not-allowed;
}

/* Skills Section */
.skills-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skills-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skills-display {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.skill-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.skill-remove {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: black;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.skill-remove:hover {
  background: rgba(255, 255, 255, 0.3);
}

.no-skills-text {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
}

/* Internship and Project Cards */
.item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.item-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
}

.item-card:hover {
  background: #f1f5f9;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.item-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.item-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 12px 0;
}

.item-description {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

.item-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.technology-tag {
  padding: 4px 8px;
  background: #e5e7eb;
  color: #374151;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.no-items-text {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
  text-align: center;
  padding: 32px;
}

/* Add Item Section */
.add-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.add-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.add-item-button {
  padding: 10px 20px;
  border: 2px solid #667eea;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: white;
  color: #667eea;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-item-button:hover:not(:disabled) {
  background: #667eea;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.add-item-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #d1d5db;
  color: #9ca3af;
}

/* Modal Styles (for internship/project modals) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  padding: 24px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.modal-body {
  padding: 32px;
  max-height: calc(90vh - 140px);
  overflow-y: auto;
}

.modal-footer {
  padding: 24px 32px;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.modal-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.modal-button-secondary {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #374151;
}

.modal-button-secondary:hover {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  transform: translateY(-1px);
}

.modal-button-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.modal-button-primary:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-section {
  animation: slideUp 0.4s ease-out;
}

.profile-section:nth-child(1) { animation-delay: 0.1s; }
.profile-section:nth-child(2) { animation-delay: 0.2s; }
.profile-section:nth-child(3) { animation-delay: 0.3s; }
.profile-section:nth-child(4) { animation-delay: 0.4s; }
.profile-section:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px;
  }

  .profile-title-section {
    flex-direction: column;
    gap: 12px;
  }

  .profile-title {
    font-size: 24px;
  }

  .profile-edit-button {
    width: 100%;
    justify-content: center;
  }

  .section-header {
    padding: 20px 24px;
  }

  .section-content {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .add-item-header {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .add-item-button {
    width: 100%;
    justify-content: center;
  }

  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 20px 24px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .profile-header {
    padding: 16px 20px;
  }

  .profile-title {
    font-size: 20px;
  }

  .section-header {
    padding: 16px 20px;
  }

  .section-content {
    padding: 20px;
  }

  .section-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .section-title {
    font-size: 18px;
  }

  .form-input,
  .form-select {
    padding: 10px 14px;
    font-size: 14px;
  }

  .form-input.with-icon {
    padding-left: 40px;
  }

  .input-icon {
    left: 14px;
    font-size: 16px;
  }
}

/* Scrollbar styling */
.modal-body::-webkit-scrollbar,
.section-content::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track,
.section-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb,
.section-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover,
.section-content::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Mock Interview Cards - Modern CSS Design System */

/* Main Container */
.mock-interviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Filter Section */
.filter-section {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.filter-header {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-header::before {
  content: "🔍";
  font-size: 20px;
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 16px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.filter-select {
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.clear-filters-btn {
  padding: 8px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-filters-btn:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  color: #374151;
}

/* Loading and Error States */
.loading-state, .error-state, .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
  text-align: center;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text, .error-title, .empty-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.error-message, .empty-message {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
  max-width: 400px;
}

.retry-btn {
  padding: 10px 20px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.retry-btn:hover {
  background: #5a6fd8;
  transform: translateY(-1px);
}

/* Cards Grid */
.interviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 32px;
}

/* Interview Card */
.interview-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.interview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Resume-based card special styling */
.interview-card.resume-based {
  border: 2px solid #4caf50;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(69, 160, 73, 0.05));
}

/* Card Header */
.card-header {
  padding: 20px;
  border-bottom: 1px solid #f3f4f6;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.card-header-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.card-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

/* Resume card avatar */
.interview-card.resume-based .card-avatar {
  background: linear-gradient(45deg, #4caf50, #45a049);
  color: white;
}

/* Regular card avatar */
.interview-card:not(.resume-based) .card-avatar {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.card-title-section {
  flex: 1 1;
  min-width: 0;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tag {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

/* Tag variations */
.card-tag.primary {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.card-tag.success {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.card-tag.outlined {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.card-tag.technology {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Card Body */
.card-body {
  padding: 20px;
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.card-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1 1;
}

/* Card Stats */
.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
}

.stat-label {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

/* Card Actions */
.card-actions {
  padding: 0 20px 20px 20px;
}

.card-button {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Resume card button */
.interview-card.resume-based .card-button {
  background: linear-gradient(45deg, #4caf50, #45a049);
  color: white;
}

.interview-card.resume-based .card-button:hover {
  background: linear-gradient(45deg, #45a049, #3d8b40);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Regular card button */
.interview-card:not(.resume-based) .card-button {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.interview-card:not(.resume-based) .card-button:hover {
  background: linear-gradient(45deg, #5a6fd8, #6a4190);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Pending Interviews Section */
.pending-section {
  margin-bottom: 32px;
}

.pending-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 16px;
}

.pending-title-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pending-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.pending-count {
  padding: 4px 12px;
  background: rgba(251, 191, 36, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Pending Card Special Styling - Same as regular cards */
.interview-card.pending {
  border: 1px solid #e5e7eb;
  background: white;
}

.interview-card.pending .card-avatar {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.interview-card.pending .card-button {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.interview-card.pending .card-button:hover {
  background: linear-gradient(45deg, #5a6fd8, #6a4190);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .interviews-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-controls {
    grid-template-columns: 1fr;
  }
  
  .card-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .card-button {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .pagination-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .pending-title-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .clear-filters-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .mock-interviews-container {
    padding: 0 12px;
  }
  
  .filter-section {
    padding: 16px;
  }
  
  .card-header, .card-body, .card-actions {
    padding: 16px;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  .card-description {
    font-size: 13px;
  }
}

/* Performance Tab - Custom CSS Design */

/* Performance Container */
.performance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Performance Cards Grid */
.performance-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

/* Performance Card */
.performance-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.performance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Card Header */
.performance-card-header {
  padding: 24px;
  border-bottom: 1px solid #f3f4f6;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.performance-card-title-section {
  flex: 1 1;
}

.performance-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.performance-card-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Card Actions */
.performance-card-actions {
  display: flex;
  gap: 8px;
}

.performance-action-btn {
  padding: 8px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.performance-action-btn:hover {
  border-color: #667eea;
  background: #f8fafc;
  color: #667eea;
}

/* Card Body */
.performance-card-body {
  padding: 24px;
  flex: 1 1;
}

/* Feedback Sections Grid */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  gap: 24px;
}

/* Overall Feedback Section - Span full width */
.feedback-section.overall-feedback {
  grid-column: 1 / -1;
}

/* Feedback Section */
.feedback-section {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e7eb;
}

.feedback-section.strengths {
  border-left: 4px solid #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
}

.feedback-section.weaknesses {
  border-left: 4px solid #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(245, 158, 11, 0.02));
}

.feedback-section.recommendations {
  border-left: 4px solid #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
}

.feedback-section.overall-feedback {
  border-left: 4px solid #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.02));
}

/* Feedback Header */
.feedback-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.feedback-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.feedback-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.strengths .feedback-title {
  color: #059669;
}

.weaknesses .feedback-title {
  color: #d97706;
}

.recommendations .feedback-title {
  color: #2563eb;
}

.overall-feedback .feedback-title {
  color: #7c3aed;
}

/* Feedback List */
.feedback-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feedback-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.feedback-item:last-child {
  border-bottom: none;
}

.feedback-item-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.strengths .feedback-item-icon {
  color: #10b981;
}

.weaknesses .feedback-item-icon {
  color: #f59e0b;
}

.recommendations .feedback-item-icon {
  color: #3b82f6;
}

.feedback-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  margin: 0;
  flex: 1 1;
}

/* Simple Feedback List */
.simple-feedback-list {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0 0 0;
}

.simple-feedback-list li {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 6px;
  position: relative;
}

.simple-feedback-list li:last-child {
  margin-bottom: 0;
}

/* Overall Feedback Text */
.overall-feedback-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Recent Interviews Table */
.recent-interviews-card {
  grid-column: span 1;
}

.interview-table-container {
  overflow-x: auto;
}

.interview-table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
  font-size: 14px;
}

.interview-table th {
  background-color: #f8f9fa;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
  white-space: nowrap;
}

.interview-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f3f4;
  vertical-align: middle;
}

.interview-table tr:hover {
  background-color: #f8f9fa;
}

.interview-table tr:last-child td {
  border-bottom: none;
}

.test-name {
  font-weight: 600;
  color: #212529;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.score {
  font-weight: 600;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  min-width: 50px;
}

.score.success {
  background-color: #d4edda;
  color: #155724;
}

.score.warning {
  background-color: #fff3cd;
  color: #856404;
}

.score.error {
  background-color: #f8d7da;
  color: #721c24;
}

.report-action {
  text-align: center;
}

.report-btn {
  background-color: #667eea;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-weight: 500;
}

.report-btn:hover {
  background-color: #5a6fd8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .performance-grid {
    grid-template-columns: 1fr;
  }
  
  .feedback-grid {
    grid-template-columns: 1fr;
  }
  
  .performance-card-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .performance-card-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .performance-container {
    padding: 0 12px;
  }
  
  .performance-card-header,
  .performance-card-body {
    padding: 16px;
  }
  
  .feedback-section {
    padding: 16px;
  }
  
  .performance-card-title {
    font-size: 18px;
  }
  
  .feedback-title {
    font-size: 14px;
  }
  
  .feedback-text {
    font-size: 13px;
  }
}

/* Student Dashboard Header Styles */

/* Main Header Container */
.student-dashboard-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.student-dashboard-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grain\" width=\"100\" height=\"100\" patternUnits=\"userSpaceOnUse\"><circle cx=\"25\" cy=\"25\" r=\"1\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"75\" cy=\"75\" r=\"1\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"50\" cy=\"10\" r=\"0.5\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"10\" cy=\"60\" r=\"0.5\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"90\" cy=\"40\" r=\"0.5\" fill=\"white\" opacity=\"0.1\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url%28%23grain%29\"/></svg>");
  opacity: 0.3;
  pointer-events: none;
}

/* Header Content Container */
.header-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Layout */
.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Profile Section */
.profile-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Profile Avatar */
.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.profile-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Profile Info */
.profile-info {
  flex: 1 1;
  min-width: 0;
}

.welcome-message {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: white;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* Status Badges Container */
.status-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Level Badge */
.level-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.level-badge:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.level-icon {
  font-size: 1.2rem;
  color: #667eea;
}

.level-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Placement Ready Badge */
.placement-ready-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  transition: all 0.2s ease;
}

.placement-ready-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.trophy-icon {
  font-size: 1rem;
}

/* Gamification Level Progression */
.level-progression {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.level-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 1rem 0;
}

.level-path::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    #ef4444 0%, 
    #f59e0b 25%, 
    #eab308 50%, 
    #22c55e 75%, 
    #10b981 100%);
  transform: translateY(-50%);
  border-radius: 2px;
  z-index: 1;
}

.level-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.level-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.level-badge.completed {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-color: #10b981;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.level-badge.current {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: #667eea;
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.level-badge.locked {
  background: #f3f4f6;
  color: #9ca3af;
  border-color: #d1d5db;
}

.level-badge:hover {
  transform: scale(1.2);
}

.level-badge.completed:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.level-badge.current:hover {
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.6);
}

.level-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  max-width: 80px;
  line-height: 1.2;
}

.level-label.completed {
  color: #059669;
}

.level-label.current {
  color: #667eea;
  font-weight: 700;
}

.level-label.locked {
  color: #9ca3af;
}

.progress-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: translateY(-50%);
  border-radius: 2px;
  transition: width 0.8s ease;
  z-index: 3;
}

.level-info {
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.level-info h4 {
  margin: 0 0 0.5rem 0;
  color: #667eea;
  font-size: 1rem;
  font-weight: 700;
}

.level-info p {
  margin: 0;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.4;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.8);
  }
}

/* Action Buttons Section */
.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Header Button Styles */
.header-button {
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.header-button:hover::before {
  left: 100%;
}

/* Download Resume Button */
.download-resume-btn {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: white;
}

.download-resume-btn:hover {
  background: linear-gradient(135deg, #388e3c, #2e7d32);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

/* Upload Resume Button */
.upload-resume-btn {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: white;
}

.upload-resume-btn:hover {
  background: linear-gradient(135deg, #1976d2, #1565c0);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

/* Logout Button */
.logout-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

/* Button Icons */
.button-icon {
  font-size: 1.1rem;
}

/* Performance Summary Cards */
.performance-summary-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.performance-card {
  border-radius: 16px;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.performance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.performance-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.performance-card:hover::before {
  transform: translateX(100%);
}

.performance-card.total-score {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.performance-card.total-score:hover {
  box-shadow: 0 20px 40px rgba(240, 147, 251, 0.4);
}

.performance-card.assessment-score {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.performance-card.assessment-score:hover {
  box-shadow: 0 20px 40px rgba(79, 172, 254, 0.4);
}

.performance-card-content {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.performance-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.performance-card-title-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.performance-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.performance-card-icon svg {
  font-size: 28px;
}

.performance-card-title {
  opacity: 0.9;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}

.performance-card-subtitle {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

.performance-card-live-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.performance-card-live-indicator span {
  font-weight: bold;
  font-size: 0.8rem;
}

.performance-card-score {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.performance-card-description {
  opacity: 0.8;
  font-size: 0.875rem;
  margin: 0 0 1.5rem 0;
}

.performance-card-progress {
  margin-bottom: 1rem;
}

.performance-card-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.performance-card-progress-label {
  opacity: 0.7;
  font-size: 0.75rem;
  font-weight: 500;
}

.performance-card-progress-value {
  opacity: 0.9;
  font-size: 0.75rem;
  font-weight: bold;
}

.performance-card-progress-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.performance-card-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.performance-card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.performance-card-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.performance-card-status-dot.success {
  background: #4ade80;
}

.performance-card-status-dot.warning {
  background: #fbbf24;
}

.performance-card-status-text {
  opacity: 0.8;
  font-size: 0.75rem;
  margin: 0;
}

/* Tablet/Laptop Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Performance Cards - Smaller size on laptops */
  .performance-summary-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }
  
  .performance-card {
    min-height: 260px;
  }
  
  .performance-card-content {
    padding: 1.25rem;
  }
  
  .performance-card-icon {
    width: 52px;
    height: 52px;
  }
  
  .performance-card-icon svg {
    font-size: 26px;
  }
  
  .performance-card-title {
    font-size: 0.8rem;
  }
  
  .performance-card-subtitle {
    font-size: 1.1rem;
  }
  
  .performance-card-live-indicator {
    width: 36px;
    height: 36px;
  }
  
  .performance-card-live-indicator span {
    font-size: 0.75rem;
  }
  
  .performance-card-score {
    font-size: 2.25rem;
  }
  
  .performance-card-description {
    font-size: 0.8rem;
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  /* Prevent horizontal scrolling */
  .student-dashboard-header,
  .header-content,
  .header-layout {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  /* Ensure container doesn't overflow */
  .profile-section,
  .action-buttons,
  .status-badges {
    min-width: 0;
    width: 100%;
  }
  .student-dashboard-header {
    padding: 1.5rem 0;
  }

  .header-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .profile-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .profile-avatar {
    width: 60px;
    height: 60px;
  }

  .welcome-message {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .status-badges {
    gap: 0.75rem;
    width: 100%;
  }

  .level-badge,
  .placement-ready-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .action-buttons {
    width: 100%;
    justify-content: stretch;
    gap: 0.75rem;
  }

  .header-button {
    flex: 1 1;
    justify-content: center;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .button-icon {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Performance Cards - Full width on mobile */
  .performance-summary-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .performance-card {
    min-height: 240px;
    width: 100%;
    max-width: 100vw;
  }
  
  .performance-card-content {
    padding: 1rem;
  }
  
  .performance-card-icon {
    width: 48px;
    height: 48px;
  }
  
  .performance-card-icon svg {
    font-size: 24px;
  }
  
  .performance-card-title {
    font-size: 0.75rem;
  }
  
  .performance-card-subtitle {
    font-size: 1rem;
  }
  
  .performance-card-live-indicator {
    width: 32px;
    height: 32px;
  }
  
  .performance-card-live-indicator span {
    font-size: 0.7rem;
  }
  
  .performance-card-score {
    font-size: 2rem;
  }
  
  .performance-card-description {
    font-size: 0.75rem;
  }
  
  .performance-card-progress-label,
  .performance-card-progress-value {
    font-size: 0.7rem;
  }
  
  .performance-card-progress-bar {
    height: 6px;
  }
  
  .performance-card-status-text {
    font-size: 0.7rem;
  }
  
  /* Prevent horizontal scrolling */
  .student-dashboard-header,
  .header-content,
  .header-layout {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  /* Ensure all content fits within viewport */
  .profile-section,
  .profile-info,
  .action-buttons,
  .status-badges,
  .welcome-message {
    min-width: 0;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .student-dashboard-header {
    padding: 1rem 0;
  }

  .header-content {
    padding: 0 0.75rem;
  }

  .profile-avatar {
    width: 50px;
    height: 50px;
  }

  .welcome-message {
    font-size: 1.25rem;
  }

  .status-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .action-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-button {
    width: 100%;
  }
}

/* Animation for smooth transitions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(-2px);
  }
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

@keyframes goldShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.student-dashboard-header {
  animation: fadeInUp 0.6s ease-out;
}

.profile-section {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.action-buttons {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Pulse animation for live indicators */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.ReportDialog_reportDialog__Ju3QY {
  max-width: 900px;
  width: 90%;
  margin: 2rem auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

.ReportDialog_header__o65MR {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #4f46e5;
}

.ReportDialog_title__cvWoK {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.ReportDialog_meta__jDTKQ {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  color: #64748b;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.ReportDialog_techTag__Iuo-p {
  background: #e0e7ff;
  color: #4f46e5;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.8rem;
}

.ReportDialog_overallScore__-GsUC {
  text-align: center;
  margin-top: 1rem;
}

.ReportDialog_scoreLabel__XH3Df {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.ReportDialog_scoreValue__pVTZS {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.ReportDialog_scoreExcellent__psdoy {
  color: #10b981;
}

.ReportDialog_scoreGood__HwTS5 {
  color: #f59e0b;
}

.ReportDialog_scoreNeedsImprovement__V-8n0 {
  color: #ef4444;
}

.ReportDialog_section__p2wQy {
  margin-bottom: 2rem;
}

.ReportDialog_sectionTitle__1A7Jh {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.ReportDialog_feedbackCard__mDwZo {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #7c3aed;
  font-style: italic;
  color: #334155;
}

.ReportDialog_grid__RWbO3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ReportDialog_card__12nh0 {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ReportDialog_card__12nh0:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ReportDialog_cardHeader__JKFqO {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ReportDialog_cardTitle__7LMxc {
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.ReportDialog_cardScore__RTbH4 {
  font-weight: 700;
  font-size: 1.1rem;
}

.ReportDialog_cardContent__J71bA {
  padding: 1.25rem;
}

.ReportDialog_progressBar__8ZeOa {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.ReportDialog_progressFill__Rtwiq {
  height: 100%;
  border-radius: 3px;
}

.ReportDialog_questionList__3dxL\+ {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ReportDialog_questionItem__UR86p {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
}

.ReportDialog_questionItem__UR86p:last-child {
  border-bottom: none;
}

.ReportDialog_correct__SbBNA {
  color: #10b981;
}

.ReportDialog_incorrect__74pPl {
  color: #ef4444;
}

.ReportDialog_partial__TshLY {
  color: #f59e0b;
}

.ReportDialog_strengthsCard__e4k1P, .ReportDialog_improvementsCard__SUdPg, .ReportDialog_recommendationsCard__MrUZr {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ReportDialog_strengthsCard__e4k1P {
  border-left: 4px solid #10b981;
}

.ReportDialog_improvementsCard__SUdPg {
  border-left: 4px solid #f59e0b;
}

.ReportDialog_recommendationsCard__MrUZr {
  border-left: 4px solid #6366f1;
}

.ReportDialog_cardTitleWithIcon__\+f5GN {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 1rem 0;
}

.ReportDialog_list__Chnx2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ReportDialog_listItem__-IYT- {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #334155;
}

.ReportDialog_listItem__-IYT-:before {
  content: '•';
  color: #94a3b8;
  font-size: 1.2em;
  line-height: 1;
}

@media (max-width: 768px) {
  .ReportDialog_grid__RWbO3 {
    grid-template-columns: 1fr;
  }
  
  .ReportDialog_meta__jDTKQ {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.ReportDialog_resumeUploadContainer__UKJLz {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.ReportDialog_uploadDescription__fDATq {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ReportDialog_uploadArea__oxp3z {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  background-color: rgba(240, 240, 240, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.ReportDialog_uploadArea__oxp3z:hover {
  border-color: #2196f3;
  background-color: rgba(33, 150, 243, 0.05);
  cursor: pointer;
}

.ReportDialog_uploadContent__fa6bh {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ReportDialog_uploadIcon__ONqu8 {
  font-size: 3rem;
  color: #666;
}

.ReportDialog_fileName__Agncp {
  font-size: 1.25rem;
  color: #333;
  margin: 0.5rem 0;
}

.ReportDialog_fileInfo__EvkxD {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.ReportDialog_selectButton__1-Kz\+ {
  margin-top: 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  border: 1px solid #2196f3;
  color: #2196f3;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.ReportDialog_selectButton__1-Kz\+:hover {
  background-color: rgba(33, 150, 243, 0.1);
}

.ReportDialog_fileSelected__2jfY9 {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ReportDialog_fileSelectedText__rtGdP {
  color: #4caf50;
  font-size: 0.9rem;
}

.ReportDialog_formGroup__fA6KS {
  margin-bottom: 1.5rem;
}

.ReportDialog_formLabel__Cwa97 {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.ReportDialog_selectWrapper__pjb0s {
  position: relative;
  width: 100%;
}

.ReportDialog_selectInput__bE\+C4 {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  -webkit-appearance: none;
          appearance: none;
  background-color: #fff;
  cursor: pointer;
}

.ReportDialog_selectInput__bE\+C4:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.ReportDialog_selectArrow__ek2Du {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
}

.ReportDialog_techTags__SWklR {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ReportDialog_techTag__Iuo-p {
  background-color: #e3f2fd;
  color: #1976d2;
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ReportDialog_removeTag__NN9Ip {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.ReportDialog_techInputContainer__XUATN {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ReportDialog_techInput__MGBqe {
  flex: 1 1;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.ReportDialog_techInput__MGBqe:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.ReportDialog_addButton__wRr7L {
  padding: 0.5rem 1rem;
  background-color: #1976d2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.ReportDialog_addButton__wRr7L:hover {
  background-color: #1565c0;
}

.ReportDialog_suggestionsList__LTv3R {
  position: absolute;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 0.25rem;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ReportDialog_suggestionItem__MYaLb {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.ReportDialog_suggestionItem__MYaLb:hover {
  background-color: #f5f5f5;
}

.ReportDialog_submitButton__yP37p {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: #1976d2;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.ReportDialog_submitButton__yP37p:hover {
  background-color: #1565c0;
}

.ReportDialog_submitButton__yP37p:disabled {
  background-color: #bdbdbd;
  cursor: not-allowed;
}

/* Base Styles */
:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --text: #1f2937;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --success: #059669;
  --warning: #d97706;
  --error: #dc2626;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: #1f2937;
  color: var(--text);
  background-color: #f9fafb;
  background-color: var(--bg);
}

/* Layout */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
  flex: 1 1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.btn-text {
  background: none;
  border: none;
  color: #4f46e5;
  color: var(--primary);
  padding: 0.25rem 0.5rem;
}

.btn-primary {
  background-color: #4f46e5;
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: #4338ca;
  background-color: var(--primary-hover);
}

.btn-outline {
  background: white;
  border-color: #e5e7eb;
  border-color: var(--border);
  color: #1f2937;
  color: var(--text);
}

.btn-outline:hover {
  background-color: #f9fafb;
  background-color: var(--bg);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-card {
  background: #ffffff;
  background: var(--white);
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--border);
}

.info-card label {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.info-card p {
  font-weight: 500;
  margin: 0;
}

/* Tech Section */
.tech-section {
  margin-bottom: 2rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tech-tag {
  background-color: #eef2ff;
  color: #4f46e5;
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

/* Table */
.table-container {
  background: #ffffff;
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--border);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--border);
}

th {
  background: #f9fafb;
  background: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  color: var(--text-light);
}

tr:last-child td {
  border-bottom: none;
}

/* Candidate Info */
.candidate-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}

.name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
  color: var(--text-light);
}

.star {
  color: #e5e7eb;
  width: 1rem;
  height: 1rem;
}

.star.filled {
  color: #fbbf24;
}

.contact-info {
  font-size: 0.875rem;
  color: #6b7280;
  color: var(--text-light);
}

.contact-info svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  color: #6b7280;
  color: var(--text-light);
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: #f9fafb;
  background: var(--bg);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Status */
.status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: capitalize;
}

.status-icon {
  width: 1rem;
  height: 1rem;
}

.status-shortlisted .status-icon {
  color: #059669;
  color: var(--success);
}

.status-pending .status-icon {
  color: #d97706;
  color: var(--warning);
}

.status-rejected .status-icon {
  color: #dc2626;
  color: var(--error);
}

/* Status Badge */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: capitalize;
}

.status-active {
  background-color: #d1fae5;
  color: #059669;
  color: var(--success);
}

.status-draft {
  background-color: #fef3c7;
  color: #d97706;
  color: var(--warning);
}

.status-completed {
  background-color: #e0f2fe;
  color: #075985;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem;
  background: #ffffff;
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px dashed #e5e7eb;
  border: 1px dashed var(--border);
}

.empty-state p {
  margin-bottom: 1rem;
  color: #6b7280;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .page-container {
    padding: 1rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

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

  table {
    min-width: 768px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.modal-container {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

/* Modal Header */
.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #64748b;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #475569;
}

/* Modal Body */
.modal-body {
  padding: 1.5rem;
}

/* Form Group */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #475569;
  font-size: 0.875rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #1e293b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* File Input */
.file-input-container {
  position: relative;
  margin-top: 0.5rem;
}

.file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background-color: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
}

.file-label:hover {
  border-color: #94a3b8;
  background-color: #f1f5f9;
}

.file-label span {
  color: #64748b;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 1rem;
}

.file-label .browse-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Modal Footer */
.modal-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.btn {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-outline {
  background: white;
  border: 1px solid #e2e8f0;
  color: #475569;
}

.btn-outline:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); }
  to { transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .modal-container {
    margin: 0 1rem;
  }
  
  .modal-header {
    padding: 1.25rem 1rem;
  }
  
  .modal-body {
    padding: 1.25rem 1rem;
  }
  
  .modal-footer {
    padding: 1rem;
  }
}

.token-validator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f8f9fa;
}

.token-validator.loading .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.token-validator.error .error-icon {
  width: 50px;
  height: 50px;
  background-color: #ffebee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #d32f2f;
  margin-bottom: 1rem;
  font-weight: bold;
}

token-validator h2 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.token-validator p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  max-width: 400px;
  line-height: 1.5;
}

.btn {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: #2980b9;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Welcome Screen Styles */
.welcome-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f7fa;
  padding: 2rem;
}

.welcome-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.welcome-header {
  text-align: center;
  margin-bottom: 2rem;
}

.welcome-header h1 {
  color: #2d3748;
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
}

.welcome-subtitle {
  color: #718096;
  margin: 0;
  font-size: 1.1rem;
}

.interview-details {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.detail-label {
  font-weight: 600;
  color: #4a5568;
  min-width: 150px;
  flex-shrink: 0;
}

.detail-value {
  color: #2d3748;
  flex-grow: 1;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tech-tag {
  background: #e2e8f0;
  color: #2d3748;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.start-button, .cancel-button {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.start-button {
  background-color: #4299e1;
  color: white;
}

.start-button:hover {
  background-color: #3182ce;
  transform: translateY(-1px);
}

.cancel-button {
  background-color: #fff;
  color: #4a5568;
  border: 1px solid #cbd5e0;
}

.cancel-button:hover {
  background-color: #f7fafc;
  border-color: #a0aec0;
}

.instructions {
  background: #f0f9ff;
  border-left: 4px solid #4299e1;
  padding: 1rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin-top: 2rem;
}

.instructions h3 {
  margin-top: 0;
  color: #2b6cb0;
  font-size: 1.1rem;
}

.instructions ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1.25rem;
  color: #4a5568;
}

.instructions li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 640px) {
  .welcome-card {
    padding: 1.5rem;
  }
  
  .detail-item {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .start-button, .cancel-button {
    width: 100%;
  }
  
  .welcome-header h1 {
    font-size: 1.75rem;
  }
}

/* Unified Registration Component Styles - Design System Compliant */

/* Main container */
.register-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
}

/* Register card */
.register-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.register-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Header section */
.register-header {
  text-align: center;
  margin-bottom: 32px;
}

.register-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.student-icon {
  background: linear-gradient(135deg, #4a2b8f 0%, #6b46c1 100%);
}

.student-icon::before {
  content: "🎓";
  font-size: 36px;
}

.institute-icon {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.institute-icon::before {
  content: "🏫";
  font-size: 36px;
}

.company-icon {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.company-icon::before {
  content: "🏢";
  font-size: 36px;
}

.organization-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.organization-icon::before {
  content: "🏗️";
  font-size: 36px;
}

.register-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.register-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

/* Form sections */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #4a2b8f;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
}

/* Form rows */
.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1 1;
  min-width: 250px;
}

/* Form groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin: 0;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px 12px 44px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 400;
  color: #1f2937;
  background: white;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4a2b8f;
  box-shadow: 0 0 0 3px rgba(74, 43, 143, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  padding: 12px 16px;
}

/* Password input container */
.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 16px;
}

.password-input-container .form-input {
  flex: 1 1;
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  font-size: 18px;
  color: #6b7280;
  transition: all 0.2s ease;
  z-index: 2;
}

.password-toggle:hover {
  background: #f3f4f6;
  color: #374151;
}

.password-toggle:focus {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  background: #f8fafc;
}

.password-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.input-with-icon .form-input,
.input-with-icon .form-select {
  padding-left: 44px;
}

/* Icon classes */
.person-icon::before { content: "👤"; }
.email-icon::before { content: "📧"; }
.phone-icon::before { content: "📱"; }
.lock-icon::before { content: "🔒"; }
.calendar-icon::before { content: "📅"; }
.location-icon::before { content: "📍"; }
.web-icon::before { content: "🌐"; }
.business-icon::before { content: "🏢"; }
.school-icon::before { content: "🎓"; }
.code-icon::before { content: "💻"; }
.description-icon::before { content: "📝"; }

/* Password toggle */
.password-toggle {
  position: absolute;
  right: 12px;
  top: 25%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  color: #6b7280;
  font-size: 16px;
  transition: all 0.2s ease;
}

.password-toggle:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Error messages */
.error-text {
  font-size: 12px;
  color: #dc2626;
  margin: 2px 0 0 0;
  font-weight: 500;
}

.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* Multi-select dropdown */
.multi-select-dropdown {
  position: relative;
}

.multi-select-button {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #1f2937;
  transition: all 0.2s ease;
}

.multi-select-button:hover {
  border-color: #d1d5db;
}

.multi-select-button.open {
  border-color: #4a2b8f;
  box-shadow: 0 0 0 3px rgba(74, 43, 143, 0.1);
}

.multi-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.multi-select-option {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

.multi-select-option:last-child {
  border-bottom: none;
}

.multi-select-option:hover {
  background: #f8fafc;
}

.multi-select-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #4a2b8f;
}

.multi-select-label {
  font-size: 14px;
  color: #374151;
}

/* Selected tags display */
.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.selected-tag {
  background: #4a2b8f;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.selected-tag-remove {
  cursor: pointer;
  font-size: 14px;
  opacity: 0.8;
}

.selected-tag-remove:hover {
  opacity: 1;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-input {
  width: 16px;
  height: 16px;
  accent-color: #4a2b8f;
  cursor: pointer;
}

.checkbox-label {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}

/* Terms and conditions */
.terms-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin-bottom: 8px;
}

.terms-group:hover {
  background: #f1f5f9;
  border-color: #d1d5db;
}

.terms-link {
  color: #4a2b8f;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 2px 6px;
  border-radius: 6px;
  position: relative;
  background: rgba(74, 43, 143, 0.05);
}

.terms-link:hover {
  color: #6b46c1;
  text-decoration: underline;
  background: rgba(74, 43, 143, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(74, 43, 143, 0.2);
}

.terms-link:focus {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  background: rgba(74, 43, 143, 0.15);
}

.terms-link:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(74, 43, 143, 0.2);
}

/* Enhanced terms and conditions section */
.form-section .checkbox-group {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-section .checkbox-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a2b8f 0%, #6b46c1 100%);
  opacity: 0.8;
}

.form-section .checkbox-group:hover {
  background: #f1f5f9;
  border-color: #d1d5db;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-section .checkbox-group .checkbox-label {
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.form-section .checkbox-group .checkbox-label .link-button {
  color: #4a2b8f;
  font-weight: 600;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.form-section .checkbox-group .checkbox-label .link-button:hover {
  color: #6b46c1;
  text-decoration: underline;
  background: rgba(74, 43, 143, 0.05);
}

.form-section .checkbox-group .checkbox-label .link-button:focus {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  background: rgba(74, 43, 143, 0.1);
}

.form-section .checkbox-group .checkbox-input {
  width: 20px;
  height: 20px;
  accent-color: #4a2b8f;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.form-section .checkbox-group .checkbox-input:hover {
  border-color: #9ca3af;
}

.form-section .checkbox-group .checkbox-input:checked {
  background: #4a2b8f;
  border-color: #4a2b8f;
}

.form-section .checkbox-group .checkbox-input:focus {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  border-color: #4a2b8f;
}

/* Error state for terms checkbox */
.form-section .checkbox-group.error {
  background: #fef2f2;
  border-color: #fecaca;
}

.form-section .checkbox-group.error .checkbox-input {
  border-color: #dc2626;
}

.form-section .checkbox-group.error .checkbox-label {
  color: #991b1b;
}

/* Terms error text */
.form-section .error-text {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-section .error-text::before {
  content: '⚠';
  font-size: 14px;
}

/* Terms modal trigger button animation */
.form-section .checkbox-group .checkbox-label .link-button {
  position: relative;
}

.form-section .checkbox-group .checkbox-label .link-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #4a2b8f;
  transition: width 0.2s ease;
}

.form-section .checkbox-group .checkbox-label .link-button:hover::after {
  width: 100%;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-tertiary {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: #4a2b8f;
  color: white;
}

.btn-primary:hover {
  background: #6b46c1;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 43, 143, 0.3);
}

.btn-primary:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: #4a2b8f;
  border: 2px solid #4a2b8f;
}

.btn-secondary:hover {
  background: #4a2b8f;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(74, 43, 143, 0.2);
}

.btn-tertiary {
  background: transparent;
  color: #6b7280;
  border: 2px solid #e5e7eb;
}

.btn-tertiary:hover {
  background: #f8fafc;
  color: #374151;
  border-color: #d1d5db;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  font-size: 18px;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Form actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.login-link {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.login-link a {
  color: #4a2b8f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.login-link a:hover {
  color: #6b46c1;
  text-decoration: underline;
}

/* Form links section */
.form-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  text-align: center;
}

.form-links p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.form-link-text {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

/* Link button styling */
.link-button {
  background: none;
  border: none;
  color: #4a2b8f;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  transition: color 0.2s ease, -webkit-text-decoration 0.2s ease;
  transition: color 0.2s ease, text-decoration 0.2s ease;
  transition: color 0.2s ease, text-decoration 0.2s ease, -webkit-text-decoration 0.2s ease;
}

.link-button:hover {
  color: #6b46c1;
  text-decoration: underline;
}

.link-button:focus {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Back link specific styling */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
  font-weight: 500;
}

.back-link:hover {
  color: #374151;
}

/* Modern Terms & Conditions Design */
.terms-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.terms-container:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.terms-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
}

.terms-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4a2b8f 0%, #6b46c1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.terms-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.terms-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.terms-agreement {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.terms-agreement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a2b8f 0%, #6b46c1 100%);
  opacity: 0.8;
}

.terms-agreement:hover {
  background: #f1f5f9;
  border-color: #d1d5db;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.terms-agreement.error {
  background: #fef2f2;
  border-color: #fecaca;
}

.terms-agreement.error::before {
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
}

.terms-checkbox-wrapper {
  position: relative;
}

.terms-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.terms-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  -webkit-user-select: none;
          user-select: none;
}

.terms-checkbox-label .checkmark {
  position: relative;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.terms-checkbox-label .checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-checkbox:checked ~ .terms-checkbox-label .checkmark {
  background: #4a2b8f;
  border-color: #4a2b8f;
  box-shadow: 0 2px 4px rgba(74, 43, 143, 0.3);
}

.terms-checkbox:checked ~ .terms-checkbox-label .checkmark::after {
  display: block;
}

.terms-checkbox:hover ~ .terms-checkbox-label .checkmark {
  border-color: #9ca3af;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-checkbox:focus ~ .terms-checkbox-label .checkmark {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  border-color: #4a2b8f;
}

.terms-text {
  flex: 1 1;
}

.terms-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4a2b8f 0%, #6b46c1 100%);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(74, 43, 143, 0.2);
}

.terms-action-btn:hover {
  background: linear-gradient(135deg, #6b46c1 0%, #7c3aed 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(74, 43, 143, 0.3);
}

.terms-action-btn:focus {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(74, 43, 143, 0.1);
}

.terms-action-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(74, 43, 143, 0.2);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.terms-action-btn:hover .btn-arrow {
  transform: translateX(2px);
}

.terms-error-message {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
  padding: 8px 12px;
  background: #fef2f2;
  border-radius: 6px;
  border-left: 3px solid #dc2626;
}

.terms-error-message svg {
  flex-shrink: 0;
  color: #dc2626;
}

/* Enhanced checkbox group styling */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: #4a2b8f;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-input:focus {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  border-radius: 2px;
}

.checkbox-label {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
  flex: 1 1;
}

.checkbox-label .link-button {
  font-weight: 600;
  color: #4a2b8f;
}

/* Responsive design */
@media (max-width: 768px) {
  .register-container {
    padding: 16px 12px;
  }

  .register-card {
    padding: 24px 16px;
    max-width: 100%;
  }

  .register-title {
    font-size: 24px;
  }

  .register-subtitle {
    font-size: 14px;
  }

  .register-icon {
    width: 64px;
    height: 64px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .form-row .form-group {
    min-width: 100%;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px 16px 12px 44px;
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-tertiary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .section-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 20px 12px;
  }

  .register-title {
    font-size: 20px;
  }

  .register-subtitle {
    font-size: 13px;
  }

  .register-icon {
    width: 56px;
    height: 56px;
  }

  .form-section {
    gap: 12px;
  }

  .terms-group {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Loading state */
.register-loading {
  pointer-events: none;
  opacity: 0.8;
}

/* Enhanced form field styling */
.form-input,
.form-select,
.form-textarea {
  border: 2px solid #d1d5db !important;
  background-color: #ffffff !important;
  color: #1f2937 !important;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #4a2b8f !important;
  box-shadow: 0 0 0 3px rgba(74, 43, 143, 0.1) !important;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

/* Enhanced multi-select dropdown styling */
.multi-select-button {
  border: 2px solid #d1d5db !important;
  background-color: #ffffff !important;
  color: #1f2937 !important;
}

.multi-select-button:hover {
  border-color: #9ca3af !important;
}

.multi-select-button.open {
  border-color: #4a2b8f !important;
  box-shadow: 0 0 0 3px rgba(74, 43, 143, 0.1) !important;
}

.multi-select-options {
  border: 2px solid #d1d5db !important;
  position: relative;
  border-top: none !important;
  background-color: #ffffff !important;
  max-height: 250px !important;
  overflow-y: auto !important;
}

.multi-select-option {
  padding: 12px 16px !important;
  border-bottom: 1px solid #f3f4f6 !important;
  background-color: #ffffff !important;
  color: #374151 !important;
}

.multi-select-option:hover {
  background-color: #f8fafc !important;
}

.multi-select-option:last-child {
  border-bottom: none !important;
}

.multi-select-checkbox {
  width: 18px !important;
  height: 18px !important;
  accent-color: #4a2b8f !important;
}

.multi-select-label {
  font-size: 14px !important;
  color: #374151 !important;
  font-weight: 500 !important;
}

/* Ensure select dropdowns have proper styling */
select.form-select {
  -webkit-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27currentColor%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276,9 12,15 18,9%27%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px !important;
}

select.form-select::-ms-expand {
  display: none;
}

/* Focus states */
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-tertiary:focus-visible {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .register-card {
    border: 2px solid #1f2937;
  }

  .form-input,
  .form-select,
  .form-textarea {
    border-width: 2px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-tertiary {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .register-card,
  .btn-primary,
  .btn-secondary,
  .btn-tertiary,
  .form-input,
  .form-select,
  .form-textarea,
  .multi-select-button,
  .multi-select-option {
    transition: none;
  }

  .loading-spinner {
    animation: none;
  }
}

/* Submit button styling */
.submit-button {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #4a2b8f 0%, #6b46c1 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(74, 43, 143, 0.2);
  position: relative;
  overflow: hidden;
}

.submit-button:hover {
  background: linear-gradient(135deg, #6b46c1 0%, #7c3aed 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 43, 143, 0.3);
}

.submit-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(74, 43, 143, 0.2);
}

.submit-button:disabled {
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.7;
}

.submit-button .button-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.submit-button .loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Register button styling */
.register-button {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #4a2b8f 0%, #6b46c1 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(74, 43, 143, 0.2);
  position: relative;
  overflow: hidden;
}

.register-button:hover {
  background: linear-gradient(135deg, #6b46c1 0%, #7c3aed 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 43, 143, 0.3);
}

.register-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(74, 43, 143, 0.2);
}

.register-button:disabled {
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.7;
}

/* Organization-specific button styling */
.register-button.organization-button {
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.register-button.organization-button:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.register-button.organization-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.register-button.organization-button:disabled {
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.7;
}

/* Form checkbox styling */
.form-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #4a2b8f;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: white;
}

.form-checkbox:hover {
  border-color: #9ca3af;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-checkbox:focus {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  border-color: #4a2b8f;
  box-shadow: 0 0 0 3px rgba(74, 43, 143, 0.1);
}

.form-checkbox:checked {
  background: #4a2b8f;
  border-color: #4a2b8f;
  box-shadow: 0 2px 4px rgba(74, 43, 143, 0.2);
}

.form-checkbox.error {
  border-color: #dc2626;
  background: #fef2f2;
}

.form-checkbox.error:focus {
  outline-color: #dc2626;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Register footer styling */
.register-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.footer-text {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.back-button {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.back-button:hover {
  background: #f3f4f6;
  color: #374151;
  transform: translateY(-1px);
}

.back-button:focus {
  outline: 2px solid #4a2b8f;
  outline-offset: 2px;
  background: #f8fafc;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Institute Register Form - Mobile First */
.institute-register-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Form sections */
.institute-register-form .form-section {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Section titles */
.institute-register-form .section-title {
  color: #2d3748;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

/* Form rows - single column on mobile */
.institute-register-form .form-row {
  margin: 0 -0.5rem;
  display: flex;
  flex-wrap: wrap;
}

/* Form groups - full width on mobile */
.institute-register-form .form-group {
  padding: 0 0.5rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

/* Labels */
.institute-register-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #4a5568;
  font-size: 0.875rem;
}

/* Input fields */
.institute-register-form .form-input,
.institute-register-form .form-select,
.institute-register-form .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

/* Input with icon */
.institute-register-form .input-with-icon {
  position: relative;
}

.institute-register-form .input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
}

.institute-register-form .input-with-icon .form-input,
.institute-register-form .input-with-icon .form-select {
  padding-left: 2.5rem;
}

/* Focus states */
.institute-register-form .form-input:focus,
.institute-register-form .form-select:focus,
.institute-register-form .form-textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

/* Error states */
.institute-register-form .error .form-input,
.institute-register-form .error .form-select,
.institute-register-form .error .form-textarea {
  border-color: #e53e3e;
}

.institute-register-form .error-text {
  color: #e53e3e;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: block;
}

/* Submit button */
.institute-register-form .submit-button {
  width: 100%;
  padding: 1rem;
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.institute-register-form .submit-button:hover {
  background-color: #4338ca;
}

.institute-register-form .submit-button:disabled {
  background-color: #cbd5e0;
  cursor: not-allowed;
}

/* Form links */
.institute-register-form .form-links {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.institute-register-form .form-link-text {
  color: #4a5568;
  margin-bottom: 1rem;
}

/* Link buttons */
.institute-register-form .link-button {
  background: none;
  border: none;
  color: #4f46e5;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

/* Back link */
.institute-register-form .back-link {
  background: none;
  border: none;
  color: #4a5568;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* Password toggle */
.institute-register-form .password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 0;
}

/* Select dropdown */
.institute-register-form .select-wrapper {
  position: relative;
}

.institute-register-form .select-wrapper::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: #4a5568;
  pointer-events: none;
  font-size: 0.6rem;
}

.institute-register-form .form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: none;
  padding-right: 2.5rem;
}

/* Loading spinner */
.institute-register-form .loading-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Two columns on desktop */
@media (min-width: 768px) {
  .institute-register-form .form-row {
    margin: 0 -0.75rem;
  }
  
  .institute-register-form .form-group {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(50% - 1.5rem);
    padding: 0 0.75rem;
  }
  
  /* Full width for specific elements */
  .institute-register-form .form-group.full-width {
    flex: 0 0 100%;
  }
  
  /* Adjust spacing for two-column layout */
  .institute-register-form .form-group:nth-child(odd) {
    padding-right: 0.75rem;
  }
  
  .institute-register-form .form-group:nth-child(even) {
    padding-left: 0.75rem;
  }
}

/* Larger screens */
@media (min-width: 1024px) {
  .institute-register-form {
    padding: 2rem;
  }
}

/* Update container and card styles */
.register-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background-color: #f8fafc;
}

.register-card {
  width: 100%;
  max-width: 1200px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
              0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 2rem;
}

/* Update header styles */
.register-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.register-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background-color: #eef2ff;
  color: #4f46e5;
}

.register-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.register-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .register-container {
    padding: 1rem;
  }
  
  .register-card {
    padding: 1.5rem;
    border-radius: 8px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 1rem;
  }
}
/* Full width textarea */
.institute-register-form .form-group.full-width {
  flex: 0 0 100%;
  max-width: 100%;
}

.institute-register-form .form-textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  transition: all 0.2s ease;
}

/* Make sure error state works for textarea */
.institute-register-form .error .form-textarea {
  border-color: #e53e3e;
}
/* Simple Clean Organization Dashboard */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.organization-dashboard {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
}

/* Header */
.organization-dashboard-header {
  background: #f8f9fa;
  padding: 2rem 0;
  border-bottom: 1px solid #e9ecef;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  background: #6c757d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.welcome-message {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
}

.logout-button {
  background: #dc3545;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.logout-button:hover {
  background: #c82333;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Statistics Section */
.stats-section {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1;
  min-width: 250px;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
}

.stat-content {
  flex: 1 1;
}

.stat-content .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: black !important;
  margin-bottom: 0.25rem;
}

.stat-content .stat-label {
  font-size: 0.875rem;
  color: black !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #dee2e6;
  margin-bottom: 2rem;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.tab-button {
  background: #ffffff;
  border: 1px solid #dee2e6;
  color: #000000 !important;
  border-bottom: none;
  padding: 1rem 2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
  position: relative;
}

.tab-button:hover {
  color: #000000 !important;
  background: #e9ecef;
  border-color: #adb5bd;
}

.tab-button.active {
  color: #000000 !important;
  background: #ffffff;
  border-color: #007bff;
  border-bottom: 2px solid #ffffff;
  margin-bottom: -2px;
  font-weight: 600;

}

.tab-button:not(:last-child) {
  border-right: 1px solid #dee2e6;
}

/* Simple Profile Container */
.simple-profile-container {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  padding: 2rem;
}

/* Profile Header */
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.profile-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #212529;
  margin: 0;
}

.edit-btn, .save-btn, .cancel-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.edit-btn {
  background: #007bff;
  color: white;
}

.edit-btn:hover {
  background: #0056b3;
}

.save-btn {
  background: #28a745;
  color: white;
  margin-left: 0.5rem;
}

.save-btn:hover {
  background: #1e7e34;
}

.cancel-btn {
  background: #6c757d;
  color: white;
}

.cancel-btn:hover {
  background: #545b62;
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}

/* Form Sections */
.form-section {
  margin-bottom: 2rem;
}

.section-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.form-field.full-width {
  flex: 100% 1;
}

.field-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-input {
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 0.875rem;
  background: #ffffff;
  color: #212529;
  transition: border-color 0.2s;
  outline: none;
}

/* Form Controls */
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Modal specific form styles */
.modal-content .form-control {
  background-color: #fff;
  border: 1px solid #dee2e6;
  color: #212529;
}

.modal-content .form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Ensure text is visible in input fields */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
}

/* Form group styling */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.text-input:hover {
  border-color: #adb5bd;
}

.text-input.textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.field-value {
  padding: 0.75rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #212529;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.field-value a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.field-value a:hover {
  text-decoration: underline;
}

/* Status Badges */
.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-badge.verified {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-badge.pending {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.status-badge.active {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-badge.inactive {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Loading */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e9ecef;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Email Field Disabled Styles */
.email-field-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.disabled-input {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  cursor: not-allowed !important;
  opacity: 0.7 !important;
  border: 1px solid #dee2e6 !important;
}

.disabled-input:hover {
  border-color: #adb5bd !important;
}

.disabled-field {
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
  border: 1px solid #dee2e6;
}

.email-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  margin-top: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.email-tooltip::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 1rem;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #333;
}

.email-field-container:hover .email-tooltip {
  opacity: 1;
  visibility: visible;
}

.email-field-container:hover .disabled-input,
.email-field-container:hover .disabled-field {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-layout {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .main-content {
    padding: 1rem;
  }
  
  .stats-section {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-card {
    min-width: 100%;
  }
  
  .stat-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .simple-profile-container {
    padding: 1rem;
  }
  
  .profile-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .action-buttons {
    width: 100%;
    justify-content: flex-end;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .tab-navigation {
    flex-direction: column;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
  }
  
  .tab-button {
    text-align: left;
    border: 1px solid #dee2e6;
    border-bottom: none;
    border-left: 3px solid transparent;
    background: #ffffff;
  }
  
  .tab-button:last-child {
    border-bottom: 1px solid #dee2e6;
  }
  
  .tab-button.active {
    border-left-color: #007bff;
    border-color: #007bff;
    background: #ffffff;
    margin-bottom: 0;
    border-bottom: 1px solid #007bff;
  }
}

@media (max-width: 480px) {
  .welcome-message {
    font-size: 1.25rem;
  }
  
  .profile-title {
    font-size: 1.5rem;
  }
  
  .section-heading {
    font-size: 1.125rem;
  }
  
  .edit-btn, .save-btn, .cancel-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .field-label {
    font-size: 0.8rem;
  }
  
  .text-input {
    padding: 0.6rem;
    font-size: 0.8rem;
  }
  
  .field-value {
    padding: 0.6rem;
    font-size: 0.8rem;
  }
  
  .status-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
}

/* Header Section */
.organization-dashboard-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.organization-dashboard-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grain\" width=\"100\" height=\"100\" patternUnits=\"userSpaceOnUse\"><circle cx=\"25\" cy=\"25\" r=\"1\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"75\" cy=\"75\" r=\"1\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"50\" cy=\"10\" r=\"0.5\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"10\" cy=\"60\" r=\"0.5\" fill=\"white\" opacity=\"0.1\"/><circle cx=\"90\" cy=\"40\" r=\"0.5\" fill=\"white\" opacity=\"0.1\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url%28%23grain%29\"/></svg>");
  opacity: 0.3;
  pointer-events: none;
}

.header-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Profile Section */
.profile-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.profile-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.profile-info {
  flex: 1 1;
  min-width: 0;
}

.welcome-message {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: white;
  line-height: 1.3;
}

.status-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.status-badge {
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.status-badge.verified {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.pending {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-badge.active {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.inactive {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.logout-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.logout-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logout-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.logout-button:hover .logout-icon {
  transform: translateX(3px);
}

/* Main Content */
.main-content {
  flex: 1 1;
  padding: 2rem 0;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0;
}

.tab-button {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  position: relative;
}

.tab-button:hover {
  color: #000000 !important;
  background: rgba(102, 126, 234, 0.05);
}

.tab-button.active {
  color: #000000 !important;
  border-bottom-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Tab Content */
.tab-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Profile Content */
.profile-content {
  padding: 2rem;
}

.profile-grid {
  display: grid;
  grid-gap: 2rem;
  gap: 2rem;
}

.profile-section {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.info-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.info-item.full-width {
  grid-column: 1 / -1;
}

.info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.5;
}

.info-value.status {
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value.status.verified {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.info-value.status.pending {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.info-value.status.active {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.info-value.status.inactive {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.info-value a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-value a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* ====================
   RECRUITER MANAGEMENT
   ==================== */

.recruiter-content {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background: white;
  min-height: calc(100vh - 100px);
  flex-direction: column;
  display: flex ;
}

/* Header Section - Matching Profile Tab */
.recruiter-header {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruiter-title {
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recruiter-title::before {
  content: '👥';
  font-size: 1.25rem;
  opacity: 0.8;
}

/* Add Recruiter Button - Matching Edit Button */
.add-recruiter-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.add-recruiter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.add-recruiter-btn:active {
  transform: translateY(0);
}

/* Table Container - Matching Profile Sections */
.recruiter-table-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  padding: 0;
}

/* Table Header - Matching Section Headers */
.recruiter-table thead th {
  background-color: #f8fafc;
  color: #4b5563;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Table Cells - Matching Form Fields */
.recruiter-table td {
  padding: 1rem 1.5rem;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  font-size: 0.95rem;
}

.recruiter-table tbody tr:last-child td {
  border-bottom: none;
}

.recruiter-table tbody tr {
  transition: all 0.2s ease;
}

.recruiter-table tbody tr:hover {
  background-color: #f8fafc;
}

/* Status Badges - Matching Profile Status */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: fit-content;
}

.status-active {
  background-color: #dcfce7;
  color: #166534;
}

.status-inactive {
  background-color: #fee2e2;
  color: #991b1b;
}

/* Action Buttons - Matching Form Buttons */
.action-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
}

/* Credits Management Styles */
.credits-management {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.credits-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin: 2rem 0;
}

.credits-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.credits-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.credits-card h3 {
  color: #4a5568;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.credits-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.credits-amount span {
  font-size: 1rem;
  color: #718096;
  font-weight: 500;
}

.credits-description {
  color: #718096;
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
}

.credits-details {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.credits-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #edf2f7;
}

.credits-detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: #4a5568;
  font-weight: 500;
}

.detail-value {
  color: #2d3748;
  font-weight: 600;
}

.credits-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.credits-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.credits-actions .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.credits-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.credits-actions .btn-secondary {
  background: #edf2f7;
  color: #2d3748;
}

.credits-actions .btn-outline {
  background: transparent;
  border: 1px solid #cbd5e0;
  color: #4a5568;
}

.credits-actions .btn-outline:hover {
  background: #f7fafc;
  border-color: #a0aec0;
}

.credits-alert {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  gap: 1rem;
}

.credits-alert.warning {
  background: #fffaf0;
  border-left: 4px solid #ecc94b;
}

.credits-alert.error {
  background: #fff5f5;
  border-left: 4px solid #f56565;
}

.credits-alert .alert-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.credits-alert .alert-content h4 {
  margin: 0 0 0.5rem 0;
  color: #2d3748;
  font-size: 1rem;
}

.credits-alert .alert-content p {
  margin: 0;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Badges */
.credits-low-badge,
.credits-out-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.credits-low-badge {
  background: #fef3c7;
  color: #92400e;
}

.credits-out-badge {
  background: #fee2e2;
  color: #b91c1c;
}

.low-credits-warning,
.no-credits-warning {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  font-weight: 500;
}

.low-credits-warning {
  background: #fef3c7;
  color: #92400e;
}

.no-credits-warning {
  background: #fee2e2;
  color: #b91c1c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .credits-summary {
    grid-template-columns: 1fr;
  }
  
  .credits-actions {
    flex-direction: column;
  }
  
  .credits-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.action-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  border: 1px solid #e5e7eb;
  background: white;
  color: #4b5563;
  min-width: 80px;
  justify-content: center;
}

.action-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.action-btn.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
}

.action-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.action-btn.danger {
  color: #dc2626;
  border-color: #fecaca;
  background: #fef2f2;
}

.action-btn.danger:hover {
  background: #fee2e2;
  color: #b91c1c;
}

/* Empty State - Matching Profile Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px dashed #e2e8f0;
  margin: 1.5rem;
}

.empty-icon {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.empty-state h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.empty-state p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  max-width: 400px;
  line-height: 1.6;
}

/* Loading State - Matching Profile Loading */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  margin: 1.5rem;
  border: 1px solid #e5e7eb;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e2e8f0;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-container p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .recruiter-content {
    padding: 1rem;
  }
  
  .recruiter-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .recruiter-table-container {
    border-radius: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -0.5rem;
    width: calc(100% + 1rem);
  }
  
  .action-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .action-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    flex: 1 1;
    min-width: auto;
  }
  
  .empty-state {
    margin: 1rem 0;
    padding: 2rem 1rem;
  }
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.empty-icon {
  font-size: 4rem;
  opacity: 0.5;
}

.empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.empty-description {
  font-size: 1rem;
  color: #6b7280;
  max-width: 500px;
  margin: 0;
  line-height: 1.6;
}

/* Loading State */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  gap: 1rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-container p {
  color: #6b7280;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .profile-section {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .welcome-message-dash {
    font-size: 1.5rem;
    color: #000000 !important;
  }

  .status-badges {
    justify-content: center;
  }

  .action-buttons {
    width: 100%;
    justify-content: center;
  }

  .tab-navigation {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tab-button {
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .profile-content {
    padding: 1rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .empty-state {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .organization-dashboard-header {
    padding: 1.5rem 0;
  }

  .profile-section {
    padding: 1rem;
  }

  .profile-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .welcome-message {
    font-size: 1.25rem;
  }

  .status-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .content-container {
    padding: 0 0.5rem;
  }

  .tab-content {
    border-radius: 8px;
  }

  .profile-section {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.125rem;
  }

  .info-item {
    padding: 0.5rem;
  }
}

/* Credit Management */
.credit-summary {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.credit-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.credit-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.credit-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 1rem 0;
}

.credit-progress {
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 4px;
  margin: 1.5rem 0;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  transition: width 0.3s ease;
}

.credit-stats {
  display: flex;
  justify-content: space-between;
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.credit-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.credit-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
}

.credit-transactions {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.credit-transactions h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.transactions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transaction-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s;
}

.transaction-item:hover {
  background-color: #f9fafb;
}

.transaction-details {
  flex: 1 1;
}

.transaction-description {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.transaction-date {
  font-size: 0.875rem;
  color: #6b7280;
}

.transaction-amount {
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.transaction-amount.credit {
  color: #10b981;
  background-color: #d1fae5;
}

.transaction-amount.debit {
  color: #ef4444;
  background-color: #fee2e2;
}

/* Focus States for Accessibility */
.tab-button:focus,
.logout-button:focus,
.info-item:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .organization-dashboard-header {
    background: #f3f4f6 !important;
    color: #1f2937 !important;
    box-shadow: none !important;
  }

  .profile-section {
    background: white !important;
    border: 1px solid #e5e7eb !important;
  }

  .status-badges,
  .action-buttons {
    display: none !important;
  }

  .tab-navigation {
    display: none !important;
  }

  .tab-content {
    border: none !important;
    box-shadow: none !important;
  }
}

/* Form Styles */
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.edit-button,
.save-button,
.cancel-button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.edit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.edit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.save-button {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  margin-left: 0.5rem;
}

.save-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.cancel-button {
  background: #6b7280;
  color: white;
}

.cancel-button:hover {
  background: #4b5563;
  transform: translateY(-2px);
}

.form-actions {
  display: flex;
  gap: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  background: white;
  color: #1f2937;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:hover {
  border-color: #d1d5db;
}

.form-input.textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-value {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  color: #1f2937;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.form-value a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.form-value a:hover {
  text-decoration: underline;
}

.form-value.status {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-align: center;
  justify-content: center;
}

.form-value.status.verified {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.form-value.status.pending {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.form-value.status.active {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.form-value.status.inactive {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

/* Responsive Design for Forms */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .form-actions {
    width: 100%;
    justify-content: flex-end;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .profile-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .edit-button,
  .save-button,
  .cancel-button {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .form-label {
    font-size: 0.8rem;
  }
  
  .form-input {
    padding: 0.6rem;
    font-size: 0.8rem;
  }
  
  .form-value {
    padding: 0.6rem;
    font-size: 0.8rem;
  }
}

.profile-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* Edit Profile Button */
.edit-profile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.edit-profile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Edit Actions */
.edit-actions {
  display: flex;
  gap: 0.75rem;
}

.save-btn, .cancel-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cancel-btn {
  background: #f3f4f6;
  color: #6b7280;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cancel-btn:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

/* Input Fields */
.info-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.info-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.info-input.textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb;
  transition: 0.4s;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.logout-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.logout-icon {
  font-size: 1.125rem;
}

/* Statistics Section */
.stats-section {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.05);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stats-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tabs Section */
.tabs-section {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.02);
  min-height: 400px;
}

.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tabs-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.tab-button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.tab-button:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000000 !important;
}

.tab-button.active {
  background: rgba(0, 0, 0, 0.05);
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tabs-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Profile Tab */
.profile-tab {
  color: #1f2937;
}

.profile-grid {
  display: grid;
  grid-gap: 2rem;
  gap: 2rem;
}

.profile-section {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}

.section-heading {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row.full-width {
  grid-column: 1 / -1;
}

.info-label {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: right;
}

.policies-list {
  display: grid;
  grid-gap: 0.75rem;
  gap: 0.75rem;
}

.policy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.policy-name {
  color: #374151;
  font-weight: 500;
}

.policy-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-badge.enabled {
  background: #dcfce7;
  color: #166534;
}

.policy-badge.disabled {
  background: #fef2f2;
  color: #991b1b;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.status-label {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.status-badge.verified {
  background: #dcfce7;
  color: #166534;
}

.status-badge.pending {
  background: #fef3c7;
  color: #92400e;
}

.status-badge.active {
  background: #dbeafe;
  color: #1e40af;
}

.status-badge.inactive {
  background: #fef2f2;
  color: #991b1b;
}

.status-date {
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Recruiter Tab */
.recruiter-tab {
  color: #1f2937;
}

.recruiter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.recruiter-title {
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 700;
}

.add-recruiter-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.add-recruiter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-icon {
  font-size: 1.125rem;
  font-weight: 700;
}

.recruiter-content {
  min-height: 300px;
}

.empty-recruiter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px dashed #cbd5e1;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-title {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.empty-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .company-name {
    font-size: 2rem;
  }

  .company-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .logout-button {
    align-self: flex-start;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .tabs-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tab-button {
    width: 100%;
    text-align: center;
  }

  .recruiter-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .add-recruiter-btn {
    width: 100%;
    justify-content: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .stats-container,
  .tabs-container {
    padding: 0 1rem;
  }

  .company-name {
    font-size: 1.75rem;
  }

  .stats-title {
    font-size: 1.5rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .tabs-content {
    padding: 1rem;
  }

  .profile-section {
    padding: 1rem;
  }
}

.info-item p {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.info-item a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

/* Policies Grid */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.policy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.policy-item label {
  color: #374151;
  font-weight: 600;
  margin: 0;
}

.policy-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-status.enabled {
  background: #dcfce7;
  color: #166534;
}

.policy-status.disabled {
  background: #fee2e2;
  color: #991b1b;
}

/* Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.stat-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-name {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Verification Info */
.verification-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.verification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.verification-item label {
  color: #374151;
  font-weight: 600;
  margin: 0;
}

.verification-status,
.compliance-status,
.email-status,
.account-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.verification-status.verified,
.email-status.verified {
  background: #dcfce7;
  color: #166534;
}

.verification-status.pending,
.email-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.compliance-status.under_review {
  background: #fef3c7;
  color: #92400e;
}

.compliance-status.approved {
  background: #dcfce7;
  color: #166534;
}

.compliance-status.rejected {
  background: #fee2e2;
  color: #991b1b;
}

.account-status.active {
  background: #dcfce7;
  color: #166534;
}

.account-status.inactive {
  background: #fee2e2;
  color: #991b1b;
}

.member-since,
.last-login {
  color: #6b7280;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Recruiter Content */
.recruiter-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.empty-state {
  text-align: center;
  color: #64748b;
}

.empty-state h2 {
  color: #1e293b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.empty-state p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* Loading Spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  color: white;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  margin-bottom: 20px;
}

.loading-spinner p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Error Message */
.error-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: white;
  text-align: center;
  padding: 40px;
}

.error-message h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.error-message p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.error-message .logout-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .organization-dashboard {
    padding: 16px;
  }

  .dashboard-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content {
    width: 100%;
  }

  .org-name {
    font-size: 1.5rem !important;
  }

  .header-stats {
    width: 100%;
    justify-content: space-between;
  }

  .stat-card {
    min-width: 100px;
    padding: 12px 16px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .tab-content {
    padding: 24px 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .policies-grid,
  .stats-grid,
  .verification-info {
    grid-template-columns: 1fr;
  }

  .dashboard-tabs {
    flex-direction: column;
  }

  .tab-btn {
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .organization-dashboard {
    padding: 12px;
  }

  .dashboard-header {
    padding: 16px;
  }

  .tab-content {
    padding: 20px 16px;
  }

  .info-section {
    padding: 20px 16px;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .header-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-card {
    width: 100%;
  }
}

/* Recruiter Management Styles */
.recruiter-content {
  padding: 1.5rem;
}

.recruiter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.recruiter-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.add-recruiter-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.add-recruiter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.recruiter-table-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.recruiter-table {
  width: 100%;
  border-collapse: collapse;
}

.recruiter-table th {
  background: #f8f9fa;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
}

.recruiter-table td {
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.recruiter-table tbody tr:hover {
  background: #f9fafb;
}

.recruiter-name {
  font-weight: 500;
  color: #1f2937;
}

.recruiter-email {
  color: #6b7280;
}

.recruiter-phone {
  color: #6b7280;
}

.recruiter-credits {
  font-weight: 600;
  color: #059669;
}

.recruiter-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.edit-btn {
  background: #3b82f6;
  color: white;
}

.edit-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.delete-btn {
  background: #ef4444;
  color: white;
}

.delete-btn:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

/* Modal Styles */
.orgRec-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.org-allocate-modal-overlay{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.org-Edit-Rec-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.org-Alloc-Rec-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #f3f4f6;
  color: #374151;
}

.modal-form {
  padding: 1.5rem;
}

.modal-form .form-field {
  margin-bottom: 1.5rem;
}

.modal-form .field-label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.modal-form .text-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.modal-form .text-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-actions .cancel-btn:hover:not(:disabled) {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.modal-actions .save-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-actions .save-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.modal-actions button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Forgot Password Component Styles */

/* Main container */
.forgot-password-container {
  min-height: 100vh;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

/* Card container */
.forgot-password-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  padding: 32px;
  animation: slideUp 0.3s ease-out;
}

/* Header section */
.forgot-password-header {
  text-align: center;
  margin-bottom: 32px;
}

.forgot-password-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  margin-bottom: 12px;
}

.forgot-password-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* User type selection grid */
.user-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 32px;
}

/* User type card */
.user-type-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.user-type-card:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.15);
}

.user-type-card:active {
  transform: translateY(0);
}

/* User type icon */
.user-type-icon {
  font-size: 32px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* User type title */
.user-type-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

/* User type description */
.user-type-description {
  font-size: 12px;
  line-height: 1.4;
  color: #4b5563;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #667eea;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
}

.back-link:hover {
  text-decoration: underline;
  color: #5a67d8;
  background: rgba(102, 126, 234, 0.04);
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .forgot-password-card {
    padding: 24px;
    margin: 16px;
  }
  
  .forgot-password-title {
    font-size: 24px;
  }
  
  .user-type-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .user-type-card {
    padding: 16px;
    min-height: 120px;
  }
  
  .user-type-icon {
    font-size: 28px;
  }
  
  .user-type-title {
    font-size: 16px;
  }
  
  .user-type-description {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .forgot-password-card {
    padding: 20px;
    margin: 12px;
  }
  
  .forgot-password-title {
    font-size: 22px;
  }
  
  .user-type-card {
    padding: 12px;
    min-height: 100px;
  }
  
  .user-type-icon {
    font-size: 24px;
  }
  
  .user-type-description {
    font-size: 11px;
  }
}

/* Unified Forgot Password Component Styles - Design System Compliant */

/* Main container */
.forgot-password-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
}

.forgot-password-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 0;
}

/* Card styling */
.forgot-password-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  max-width: 480px;
  width: 100%;
  padding: 32px;
  animation: slideUp 0.5s ease-out;
  position: relative;
  z-index: 1;
}

/* Header section */
.forgot-password-header {
  text-align: center;
  margin-bottom: 32px;
}

.forgot-password-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.forgot-password-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.2;
}

.forgot-password-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 0;
}

/* Form styling */
.forgot-password-form {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #6b7280;
  z-index: 1;
}

.form-input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #1f2937;
  background: white;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input.error {
  border-color: #ef4444;
}

.form-input.error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

/* Error message */
.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-message::before {
  content: '⚠️';
  font-size: 16px;
}

/* Button styles */
.btn-primary {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.btn-primary:disabled {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  padding: 10px 20px;
  background: white;
  color: #667eea;
  border: 1px solid #667eea;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: #5a67d8;
  color: #5a67d8;
}

.btn-tertiary {
  padding: 10px 20px;
  background: transparent;
  color: #667eea;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-tertiary:hover {
  background: #f8fafc;
  color: #5a67d8;
}

/* Button group */
.button-group {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

/* Loading spinner */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Success screen */
.success-screen {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.success-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.success-message {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 24px;
}

.email-highlight {
  font-weight: 600;
  color: #667eea;
}

/* Tips alert */
.tips-alert {
  background: #f0f9ff;
  border: 1px solid #0ea5e9;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.tips-title {
  font-size: 14px;
  font-weight: 600;
  color: #0c4a6e;
  margin-bottom: 8px;
}

.tips-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: #0c4a6e;
  line-height: 1.5;
}

.tips-list li {
  margin-bottom: 4px;
}

.tips-list li:last-child {
  margin-bottom: 0;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 640px) {
  .forgot-password-container {
    padding: 16px 12px;
  }
  
  .forgot-password-card {
    padding: 24px 20px;
  }
  
  .forgot-password-title {
    font-size: 24px;
  }
  
  .forgot-password-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
  
  .button-group {
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-secondary,
  .btn-tertiary {
    width: 100%;
  }
}

/* User type specific icons */
.student-icon::before {
  content: '👤';
}

.institute-icon::before {
  content: '🏛️';
}

.company-icon::before {
  content: '🏢';
}

.email-icon::before {
  content: '📧';
}

.lock-icon::before {
  content: '🔐';
}

.token-step {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.token-input-container {
  position: relative;
  margin: 2rem 0;
}

.token-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.token-input:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

.loading {
  color: #666;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #1976d2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-message {
  color: #d32f2f;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  text-align: left;
}

.technical-error {
  background-color: #ffebee;
  border-left: 4px solid #d32f2f;
  padding: 1rem;
  margin: 1rem 0;
  text-align: left;
  border-radius: 4px;
}

.retry-button {
  background: none;
  border: none;
  color: #1976d2;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.retry-button:hover {
  text-decoration: underline;
}

.error-code {
  font-family: monospace;
  background: rgba(0,0,0,0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: inline-block;
}

/* DeviceSetupStep.css */
.device-setup-simple {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.device-setup-simple h2 {
  margin-bottom: 2rem;
  color: #333;
}

.permission-prompt,
.test-prompt,
.ready-prompt {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.video-preview {
  width: 100%;
  max-width: 400px;
  height: 225px;
  margin: 0 auto 1.5rem;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.2s;
}

.permission-button {
  background: #1976d2;
  color: white;
}

.test-button {
  background: #ff9800;
  color: white;
}

.start-button {
  background: #4caf50;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

button:disabled {
  background: #bdbdbd;
  cursor: not-allowed;
}

.error-message {
  background: #ffebee;
  color: #d32f2c;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.retry-button {
  background: #f44336;
  color: white;
  margin-top: 0.5rem;
}
/* Add these styles to your CSS */
.device-setup-simple {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.permission-prompt {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  margin: 1.5rem 0;
  border: 1px solid #e9ecef;
}

.permission-prompt p {
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.5;
}

.permission-button {
  background: #1976d2;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.permission-button:hover:not(:disabled) {
  background: #1565c0;
}

.permission-button:disabled {
  background: #90caf9;
  cursor: not-allowed;
}

/* Add a subtle animation for the video preview */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.video-preview {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-out;
  max-width: 100%;
  height: auto;
}

/* Better error message styling */
.error-message {
  background: #ffebee;
  color: #d32f2f;
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  text-align: left;
  border-left: 4px solid #f44336;
}

.retry-button {
  margin-top: 1rem;
  background: #f44336;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Loading state */
@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.loading-text {
  animation: pulse 1.5s infinite;
  color: #666;
}
.ready-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 2rem auto;
  min-height: 400px;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #4CAF50;
  color: white;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.ready-screen h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ready-screen p {
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.continue-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.continue-button:hover {
  background-color: #43a047;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.continue-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.continue-button:disabled {
  background-color: #bdbdbd;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
/* Add these styles to your DeviceSetupStep.css */
.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  border-radius: 12px;
  padding: 2rem;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #4CAF50;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

.loading-text {
  color: #4a5568;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}

.loading-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.loading-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4CAF50;
  margin: 0 4px;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 80%, 100% { 
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% { 
    transform: scale(1);
    opacity: 1;
  }
}

/* Add a subtle pulse animation for the text */
@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}
/* Main Layout */
.new-interview-screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: 'white';
  min-width: 100vw;
  background-color: white;
}
  

.app-header {
  background-color: #1976d2;
  color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-title {
  font-weight: 500;
}

.main-content {
  flex: 1 1;
  max-width: 1200px;
  padding: 0 !important;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.content-paper {
 
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Stepper */
.stepper {
  margin-bottom: 2rem;
  background-color: transparent;
}

/* Step Content */
.step-content {
  padding: 1.5rem 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.token-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.token-input {
  margin-bottom: 1.5rem;
}

.submit-button {
  padding: 10px 24px;
  font-weight: 500;
  text-transform: none;
}

/* Permission Setup */
.permission-status {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  width: 100%;
  max-width: 400px;
}

.permission-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.permission-item.granted {
  border-color: #4caf50;
  background-color: #e8f5e9;
}

.preview-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f0f0f0;
  aspect-ratio: 16/9;
}



.permission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
}

.permission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}


/* Responsive Design */
@media (max-width: 960px) {
  .interview-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  
  .interview-container {
    height: auto;
    min-height: 1000px;
  }
}

@media (max-width: 600px) {
  .main-content {
    padding: 1rem;
  }
  
  .content-paper {
    padding: 1rem;
  }
  
  .step-content {
    padding: 1rem 0;
  }
  
  .interview-layout {
    grid-template-rows: 1fr 1fr;
  }
}


/*# sourceMappingURL=main.e1668314.css.map*/