:root {
      --primary: #183B73;
      --primary-dark: #10284E;
      --primary-soft: #EAF1FF;
      --accent: #D6A83E;
      --accent-soft: #FFF5DA;
      --text: #1E293B;
      --muted: #64748B;
      --border: #DCE3EE;
      --surface: #FFFFFF;
      --surface-soft: #F8FAFC;
      --danger: #B42318;
      --danger-soft: #FEF3F2;
      --success: #087443;
      --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
      --radius: 24px;
      --radius-sm: 14px;
      --page-max: 1260px;
      --nav-max: 1540px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--surface-soft);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: min(100% - 40px, var(--page-max));
      margin: 0 auto;
    }

    .site-header .container {
      width: min(100% - 48px, var(--nav-max));
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 255, 255, 0.92);
      border-bottom: 1px solid rgba(220, 227, 238, 0.9);
      backdrop-filter: blur(14px);
    }

    .navbar {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--primary-dark);
      letter-spacing: -0.02em;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--primary), #335FA3);
      color: white;
      box-shadow: 0 10px 24px rgba(24, 59, 115, 0.22);
    }

    .brand small {
      display: block;
      color: var(--muted);
      font-size: 0.76rem;
      font-weight: 650;
      letter-spacing: 0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-weight: 700;
      font-size: 0.94rem;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-placeholder {
      visibility: hidden;
      pointer-events: none;
    }


    .nav-stable-action {
      width: 202px;
      justify-content: center;
    }

    .nav-links .mobile-nav-auth {
      display: none;
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: white;
      color: var(--primary);
      cursor: pointer;
    }

    .btn {
      border: 0;
      border-radius: 999px;
      padding: 11px 18px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 800;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn:disabled {
      opacity: 0.45;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 10px 22px rgba(24, 59, 115, 0.20);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .btn-outline {
      background: white;
      color: var(--primary);
      border: 1px solid var(--border);
    }

    .btn-outline:hover {
      border-color: rgba(24, 59, 115, 0.35);
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    }

    .btn-danger {
      background: var(--danger-soft);
      color: var(--danger);
      border: 1px solid #FBD5D1;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top left, rgba(214, 168, 62, 0.22), transparent 38%),
        linear-gradient(135deg, #F9FBFF 0%, #FFFFFF 48%, #EEF5FF 100%);
      border-bottom: 1px solid var(--border);
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -160px;
      top: 30px;
      width: 420px;
      height: 420px;
      border-radius: 999px;
      border: 72px solid rgba(24, 59, 115, 0.06);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
      gap: 58px;
      align-items: center;
      min-height: 610px;
      padding: 64px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #8A6313;
      font-weight: 850;
      font-size: 0.84rem;
      margin-bottom: 18px;
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(1.88rem, 4.8vw, 3.84rem);
      line-height: 0.98;
      color: var(--primary-dark);
      letter-spacing: -0.055em;
      margin-bottom: 22px;
    }

    .hero p {
      max-width: 650px;
      font-size: 1.12rem;
      color: var(--muted);
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 34px;
    }

    .stat-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      max-width: 720px;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    }

    .stat-card strong {
      display: block;
      font-size: 1.7rem;
      color: var(--primary);
      line-height: 1;
    }

    .stat-card span {
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .hero-panel {
      position: relative;
      padding: 18px;
      border-radius: 32px;
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid rgba(220, 227, 238, 0.84);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .featured-card {
      overflow: hidden;
      border-radius: 26px;
      background: white;
      border: 1px solid var(--border);
    }

    .featured-top {
      min-height: 230px;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(24, 59, 115, 0.92), rgba(34, 82, 150, 0.82)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 2px, transparent 2px 12px);
      color: white;
    }

    .featured-top .tag {
      width: max-content;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      font-size: 0.78rem;
      font-weight: 850;
    }

    .featured-top h2 {
      font-size: 2rem;
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .featured-body {
      padding: 24px;
    }

    .featured-body p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .mini-list {
      display: grid;
      gap: 10px;
    }

    .mini-item {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      border-radius: 14px;
      background: var(--surface-soft);
      color: var(--primary-dark);
      font-weight: 800;
    }

    .section {
      padding: 82px 0;
    }

    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
    }

    .section-kicker {
      color: var(--accent);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.78rem;
      margin-bottom: 8px;
    }

    .section-heading h2,
    .profile-title h2,
    .admin-title h2 {
      color: var(--primary-dark);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      letter-spacing: -0.045em;
    }

    .section-heading p {
      max-width: 560px;
      color: var(--muted);
      font-weight: 650;
    }

    .researcher-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .researcher-card {
      position: relative;
      overflow: hidden;
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
      transition: 0.2s ease;
    }

    .researcher-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .researcher-cover {
      height: 126px;
      background:
        radial-gradient(circle at 20% 20%, rgba(214, 168, 62, 0.45), transparent 30%),
        linear-gradient(135deg, var(--primary), #3567AC);
      background-size: cover;
      background-position: center;
    }

    .researcher-body {
      padding: 0 22px 22px;
    }

    .avatar {
      width: 96px;
      height: 96px;
      margin-top: -48px;
      border-radius: 26px;
      display: grid;
      place-items: center;
      background: white;
      border: 5px solid white;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
      color: var(--primary);
      font-size: 2rem;
      font-weight: 950;
      background-size: cover;
      background-position: center;
    }

    .avatar.has-photo {
      color: transparent;
    }

    .researcher-card h3 {
      margin-top: 16px;
      color: var(--primary-dark);
      font-size: 1.35rem;
      line-height: 1.16;
      letter-spacing: -0.025em;
    }

    .role {
      color: var(--muted);
      font-weight: 750;
      margin-top: 3px;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0;
    }

    .pill {
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 850;
    }

    .card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .social-btn {
      min-width: 40px;
      min-height: 40px;
      padding: 9px 11px;
      border-radius: 14px;
      background: #F8FAFC;
      border: 1px solid var(--border);
      color: var(--primary);
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s ease;
    }

    .social-btn:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .lines-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .line-card {
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: white;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    }

    .line-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--accent-soft);
      color: #8A6313;
      font-weight: 950;
      margin-bottom: 18px;
    }

    .line-card h3 {
      color: var(--primary-dark);
      margin-bottom: 8px;
    }

    .line-card p {
      color: var(--muted);
    }

    .publication-layout {
      display: block;
    }

    .publication-list {
      display: grid;
      gap: 12px;
    }

    .recent-publications-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
    }

    .publication-card {
      padding: 18px;
      border-radius: 18px;
      border: 1px solid var(--border);
      background: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    }

    .publication-card h4 {
      color: var(--primary-dark);
      line-height: 1.22;
    }

    .publication-card span {
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 800;
    }

    .profile-view,
    .login-view,
    .admin-view {
      display: none;
      padding: 52px 0 86px;
    }

    body.mode-profile .home-view,
    body.mode-login .home-view,
    body.mode-admin .home-view {
      display: none;
    }

    body.mode-profile .profile-view,
    body.mode-login .login-view,
    body.mode-admin .admin-view {
      display: block;
    }

    .profile-shell {
      display: grid;
      grid-template-columns: minmax(360px, 0.52fr) minmax(0, 1.48fr);
      gap: 24px;
      align-items: start;
    }

    .profile-sidebar,
    .profile-main,
    .login-card,
    .admin-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    }

    .profile-sidebar {
      overflow: hidden;
      position: sticky;
      top: 100px;
    }

    .profile-banner {
      height: 160px;
      background: linear-gradient(135deg, var(--primary), #3567AC);
      background-size: cover;
      background-position: center;
    }

    .profile-side-content {
      padding: 0 24px 24px;
    }

    .profile-side-content .avatar {
      width: 116px;
      height: 116px;
      margin-top: -58px;
      font-size: 2.3rem;
    }

    .profile-side-content h1 {
      margin-top: 18px;
      color: var(--primary-dark);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .profile-main {
      padding: 28px;
    }

    .profile-title {
      display: flex;
      justify-content: space-between;
      align-items: start;
      gap: 18px;
      margin-bottom: 24px;
    }

    .bio-box {
      padding: 18px;
      border-radius: 18px;
      background: var(--surface-soft);
      border: 1px solid var(--border);
      color: var(--muted);
      margin-bottom: 20px;
    }

    .login-view {
      padding: 0;
    }

    .login-wrap {
      min-height: calc(100vh - 78px);
      display: grid;
      place-items: center;
      padding: clamp(24px, 6vh, 56px) 0;
    }

    .login-card {
      width: min(100%, 460px);
      padding: 34px;
    }

    .login-card h1 {
      color: var(--primary-dark);
      font-size: 2.25rem;
      line-height: 1;
      letter-spacing: -0.05em;
      margin-bottom: 10px;
    }

    .login-card p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .form-grid {
      display: grid;
      gap: 14px;
    }

    .field label {
      display: block;
      color: var(--primary-dark);
      font-weight: 850;
      font-size: 0.9rem;
      margin-bottom: 7px;
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 0 14px;
      color: var(--text);
      background: white;
      outline: none;
    }

    .field input {
      height: 48px;
    }

    .field textarea {
      min-height: 108px;
      padding-top: 12px;
      resize: vertical;
      line-height: 1.45;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: rgba(24, 59, 115, 0.55);
      box-shadow: 0 0 0 4px rgba(24, 59, 115, 0.10);
    }

    .field small {
      display: block;
      color: var(--muted);
      margin-top: 6px;
      font-weight: 650;
    }

    .alert {
      display: none;
      padding: 12px 14px;
      border-radius: 14px;
      font-weight: 750;
      font-size: 0.92rem;
      margin-bottom: 18px;
    }

    .alert.show {
      display: block;
    }

    .alert-error {
      background: var(--danger-soft);
      color: var(--danger);
      border: 1px solid #FBD5D1;
    }

    .alert-success {
      background: #ECFDF3;
      color: var(--success);
      border: 1px solid #ABEFC6;
    }

    .admin-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin-bottom: 22px;
    }

    .admin-title p {
      color: var(--muted);
      margin-top: 6px;
    }

    .admin-grid {
      display: grid;
      grid-template-columns: minmax(430px, 0.72fr) minmax(0, 1.28fr);
      gap: 22px;
      align-items: start;
    }

    .admin-stack {
      display: grid;
      gap: 22px;
    }

    .admin-card {
      padding: 24px;
    }

    .admin-card h3 {
      color: var(--primary-dark);
      margin-bottom: 14px;
      font-size: 1.25rem;
    }

    .paper-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }



    .form-grid.two-columns {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .field.full-span {
      grid-column: 1 / -1;
    }

    .email-social-row {
      margin-top: 12px;
    }

    .email-social-row .btn {
      width: 100%;
    }

    .profile-stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      margin-bottom: 22px;
      max-width: none;
    }

    .paper-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .paper-actions.compact {
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-end;
    }

    .icon-btn {
      width: 36px;
      height: 36px;
      padding: 0;
      border-radius: 12px;
      font-size: 1rem;
      line-height: 1;
    }

    .social-field-list {
      display: grid;
      gap: 12px;
    }

    .social-field-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 48px;
      gap: 10px;
      align-items: end;
    }

    .social-field-row .field {
      margin: 0;
    }

    .social-field-row label {
      margin-bottom: 7px;
    }

    .social-field-row .icon-btn {
      margin-bottom: 0;
      height: 48px;
      width: 48px;
      border-radius: 14px;
    }

    .custom-social-row {
      display: grid;
      grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr) auto;
      gap: 10px;
      align-items: end;
    }

    .social-admin-list {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .social-admin-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--surface-soft);
    }

    .social-admin-item strong {
      color: var(--primary-dark);
    }

    .social-admin-item span {
      display: block;
      max-width: 260px;
      color: var(--muted);
      font-size: 0.86rem;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .empty-state {
      padding: 24px;
      border-radius: 18px;
      border: 1px dashed var(--border);
      color: var(--muted);
      text-align: center;
      background: #FBFDFF;
      font-weight: 700;
    }

    .footer {
      background: var(--primary-dark);
      color: white;
      padding: 42px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 24px;
    }

    .footer h3,
    .footer h4 {
      margin-bottom: 12px;
    }

    .footer p,
    .footer a {
      color: rgba(255,255,255,0.72);
      display: block;
      margin-bottom: 8px;
    }

    @media (max-width: 980px) {
      .mobile-toggle {
        display: grid;
        place-items: center;
      }

      .nav-links {
        position: absolute;
        top: 78px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: white;
        box-shadow: var(--shadow);
      }

      .nav-links.is-open {
        display: flex;
      }

      .hero-grid,
      .profile-shell,
      .admin-grid {
        grid-template-columns: 1fr;
      }

      .profile-sidebar {
        position: static;
      }

      .researcher-grid,
      .lines-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stat-strip {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 760px) {
      .recent-publications-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 680px) {
      .nav-actions .btn-outline {
        display: none;
      }

      .nav-stable-action {
        width: auto;
      }

      .nav-links .mobile-nav-auth {
        display: inline-flex;
        width: 100%;
        margin-top: 4px;
      }

      .hero-grid {
        min-height: auto;
        padding: 48px 0;
      }

      .stat-strip,
      .researcher-grid,
      .lines-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section-heading,
      .admin-header,
      .profile-title,
      .publication-card,
      .social-admin-item {
        flex-direction: column;
        align-items: stretch;
      }

      .container {
        width: min(100% - 28px, var(--page-max));
      }

      .site-header .container {
        width: min(100% - 28px, var(--nav-max));
      }

      .form-grid.two-columns,
      .custom-social-row,
      .social-field-row {
        grid-template-columns: 1fr;
      }

      .social-field-row .icon-btn {
        width: 100%;
      }

      .paper-actions.compact {
        justify-content: flex-start;
      }

      .publication-card .btn,
      .social-admin-item .btn {
        width: 100%;
      }
    }

/* Ajustes para versión Spring Boot */
.avatar span { color: var(--primary); }
.avatar.has-photo span { color: transparent; }
.auth-note { color: var(--muted); font-size: .9rem; margin-top: 10px; font-weight: 650; }
.inline-form { display: inline; }
.admin-publication-form { margin-bottom: 22px; }
.alert[style*="display: block"] { display: block; }

.alert-warning {
  background: #FFFAEB;
  color: #B54708;
  border: 1px solid #FEDF89;
}

.field input[type="file"] {
  height: auto;
  min-height: 48px;
  padding: 12px 14px;
}

.persistent-alert {
  margin-bottom: 18px;
}

    .social-logo {
      width: 22px;
      height: 22px;
      display: block;
      object-fit: contain;
      transition: 0.2s ease;
    }

    .social-btn:hover .social-logo {
      filter: brightness(0) invert(1);
    }

    .social-fallback-hidden {
      display: none;
    }

    .social-admin-label {
      display: inline-flex !important;
      align-items: center;
      gap: 8px;
    }

    .social-admin-logo {
      width: 18px;
      height: 18px;
      object-fit: contain;
    }

.media-delete-btn {
  width: max-content;
  margin-top: 10px;
  padding: 9px 14px;
  font-size: 0.86rem;
}

@media (max-width: 680px) {
  .media-delete-btn {
    width: 100%;
  }
}

/* Modal para cambio de contraseña */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(6px);
}

.modal-backdrop.is-open {
  display: flex;
}

.modal-card {
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.modal-header h3 {
  color: var(--primary-dark);
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  color: var(--primary);
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: 0.2s ease;
}

.modal-close:hover {
  border-color: rgba(24, 59, 115, 0.35);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .modal-backdrop {
    padding: 14px;
  }

  .modal-card {
    padding: 22px;
  }

  .modal-actions .btn {
    width: 100%;
  }
}
