:root {
  --bg: #fbfbff;
  --paper: #ffffff;
  --cream: #f4f7ff;
  --ink: #101527;
  --text: rgba(16, 21, 39, 0.72);
  --muted: #7b849d;
  --line: rgba(19, 30, 57, 0.12);
  --blue: #2388ff;
  --cyan: #1ed7ff;
  --violet: #7a3cff;
  --pink: #e94bff;
  --yellow: #f9ca2c;
  --danger: #dc2626;
  --shadow: 0 22px 58px rgba(20, 28, 54, 0.11);
  --shadow-soft: 0 12px 32px rgba(20, 28, 54, 0.08);
  --font-display: "Bahnschrift", "Aptos Display", "Trebuchet MS", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--text);
  background:
    linear-gradient(rgba(35, 136, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 75, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f7f9ff 52%, #fff 100%);
  background-size: 54px 54px, 54px 54px, auto;
  font-family: var(--font-body);
}

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

button {
  color: inherit;
}

svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

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

.login-card,
.topbar,
.sidebar,
.main-panel,
.modal {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.login-card {
  width: min(100%, 1040px);
  min-height: min(760px, calc(100vh - 56px));
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 34px;
  box-shadow: var(--shadow);
  text-align: center;
}

.login-logo {
  display: block;
  width: min(460px, 78vw);
  margin: 0 auto 34px;
}

.kicker,
.brand span,
.user-box span,
.toolbar span,
.field > span,
.modal header span,
.sidebar-section h2 {
  color: #1666d8;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.login-card h1,
.empty-state h2,
.modal h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.login-copy {
  max-width: 64ch;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.profile-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  min-width: 0;
  min-height: 260px;
  align-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--cream);
  cursor: pointer;
  text-align: center;
}

form.profile-card {
  margin: 0;
  cursor: default;
}

.profile-card:hover {
  border-color: rgba(35, 136, 255, 0.32);
  transform: translateY(-2px);
}

.profile-card img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 28px;
}

.profile-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-card strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
}

.login-alert {
  width: min(100%, 720px);
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(35, 136, 255, 0.18);
  border-radius: 16px;
  background: rgba(35, 136, 255, 0.07);
  color: var(--ink);
  font-weight: 760;
  line-height: 1.45;
}

.login-alert.danger {
  border-color: rgba(220, 38, 38, 0.22);
  background: #fff1f2;
  color: var(--danger);
}

.login-alert a {
  color: #165bd8;
  font-weight: 950;
}

.login-password {
  width: min(100%, 320px);
  display: grid;
  gap: 7px;
  text-align: left;
}

.login-password input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.login-password input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(35, 136, 255, 0.14);
}

.app-shell {
  min-height: 100vh;
  padding: 18px;
}

.topbar,
.dashboard {
  width: min(100%, 1480px);
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.brand,
.user-box,
.assignee {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: min(280px, 34vw);
  max-height: 66px;
  object-fit: contain;
}

.brand div,
.user-box div {
  display: grid;
  gap: 2px;
}

.brand strong,
.user-box strong {
  color: var(--ink);
}

.user-box img,
.assignee img,
.assignee-filter img {
  object-fit: cover;
  background: var(--cream);
}

.user-box img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.dashboard {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.sidebar,
.main-panel {
  border-radius: 24px;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.nav-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.nav-item span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.nav-item strong {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-item em {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.nav-item:hover,
.nav-item.active {
  border-color: color-mix(in srgb, var(--accent) 26%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, #fff);
}

.sidebar-section {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.sidebar-section h2 {
  margin: 0;
}

.assignee-filter {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.assignee-filter.active {
  border-color: rgba(35, 136, 255, 0.32);
  background: #eef4ff;
}

.assignee-filter img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.assignee-filter span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.tool-button,
.icon-button,
.secondary-button,
.danger-button {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.tool-button {
  min-height: 38px;
  font-weight: 850;
}

.main-panel {
  min-width: 0;
  padding: 18px;
}

.section-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.section-tabs button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.section-tabs button.active {
  background: linear-gradient(135deg, rgba(35, 136, 255, 0.14), rgba(233, 75, 255, 0.12));
  color: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stats article {
  padding: 16px;
  border: 1px solid rgba(35, 136, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(35, 136, 255, 0.06), rgba(233, 75, 255, 0.06)),
    #fff;
}

.stats span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px 220px auto;
  gap: 12px;
  margin-top: 16px;
}

.toolbar label,
.contacts-toolbar label,
.field {
  display: grid;
  gap: 7px;
}

.toolbar input,
.toolbar select,
.contacts-toolbar input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 110px;
  padding-block: 10px;
  resize: vertical;
}

.toolbar input:focus,
.toolbar select:focus,
.contacts-toolbar input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(35, 136, 255, 0.14);
}

.primary-button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--violet) 56%, var(--pink));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(35, 136, 255, 0.22);
}

.profile-card .primary-button {
  width: min(100%, 320px);
}

.item-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.request-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 172px;
  gap: 14px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 28, 54, 0.06);
}

.request-card:hover {
  border-color: color-mix(in srgb, var(--accent) 36%, var(--line));
}

.cover-button {
  display: grid;
  width: 96px;
  min-height: 118px;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(35, 136, 255, 0.13), rgba(233, 75, 255, 0.12));
  color: var(--ink);
  cursor: pointer;
}

.cover-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-button span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 950;
}

.request-main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

.chips,
.meta-row,
.platform-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.chip,
.meta-row span,
.platform-row span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
}

.type-chip {
  background: color-mix(in srgb, var(--accent) 14%, #fff);
  color: var(--ink);
}

.chip:not(.type-chip),
.meta-row span,
.platform-row span {
  background: var(--cream);
  color: var(--muted);
}

.status-accepted,
.status-published {
  background: #ecfdf5 !important;
  color: #047857 !important;
}

.status-refused {
  background: #fff1f2 !important;
  color: #be123c !important;
}

.status-no_response {
  background: #fffbeb !important;
  color: #a16207 !important;
}

.status-requested,
.status-draft {
  background: #eef4ff !important;
  color: #165bd8 !important;
}

.danger-text {
  background: #fff1f2 !important;
  color: #be123c !important;
}

.request-card h2 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.request-card p {
  margin: 0;
}

.request-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.assignee {
  justify-content: flex-end;
  text-align: right;
}

.assignee img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.assignee span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.icon-button {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 300px;
  margin-top: 16px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.empty-state h2 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
}

.empty-state p {
  margin: 0;
}

.contacts-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.contacts-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
  min-height: 560px;
}

.company-list,
.contact-detail {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.company-list {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
  overflow: auto;
}

.company-button {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 64px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.company-button:hover,
.company-button.active {
  border-color: rgba(35, 136, 255, 0.18);
  background: var(--cream);
}

.company-initial,
.contact-avatar {
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(35, 136, 255, 0.16), rgba(233, 75, 255, 0.14));
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 950;
}

.company-initial {
  width: 44px;
  height: 44px;
}

.company-button strong,
.company-button em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-button strong {
  color: var(--ink);
}

.company-button em {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.company-button small {
  color: var(--muted);
  font-weight: 900;
}

.company-empty {
  padding: 18px;
  color: var(--muted);
}

.contact-detail {
  padding: 18px;
  overflow: auto;
}

.contact-detail-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-header h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.category-row span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 850;
}

.company-info {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}

.company-info a {
  color: #165bd8;
  font-weight: 850;
}

.company-info p {
  margin: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 28, 54, 0.05);
}

.contact-avatar {
  width: 56px;
  height: 56px;
  font-size: 1.3rem;
}

.contact-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.contact-card p {
  margin: 4px 0 0;
}

.contact-card dl {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
}

.contact-card dl div {
  display: grid;
  gap: 1px;
}

.contact-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-card a {
  color: #165bd8;
}

.contact-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.contact-empty {
  min-height: 100%;
  margin-top: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 21, 39, 0.42);
  backdrop-filter: blur(8px);
}

.modal {
  width: min(100%, 980px);
  max-height: min(92vh, 980px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
}

.contact-modal {
  width: min(100%, 1100px);
}

.password-modal {
  width: min(100%, 620px);
}

.password-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 0;
  color: var(--ink);
}

.password-user img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--cream);
}

.modal header,
.modal footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-color: var(--line);
}

.modal header {
  border-bottom: 1px solid var(--line);
}

.modal footer {
  border-top: 1px solid var(--line);
}

.modal footer > div {
  display: flex;
  gap: 10px;
}

.modal h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  overflow: auto;
}

.wide {
  grid-column: 1 / -1;
}

.cover-field small {
  color: var(--muted);
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.checks legend {
  padding: 0 6px;
  color: #1666d8;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.checks label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.checks input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.type-fields {
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--line));
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 7%, #fff);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.contact-editor-list {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}

.contact-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact-editor-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 42px;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.contact-editor-row .wide {
  grid-column: 1 / 3;
}

.contact-row-delete {
  align-self: start;
  grid-column: 3;
  grid-row: 1;
}

.secondary-button,
.danger-button {
  min-height: 42px;
  padding: 0 14px;
  font-weight: 850;
}

.danger-button {
  border-color: rgba(220, 38, 38, 0.2);
  background: #fff1f2;
  color: var(--danger);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

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

  .sidebar-section {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-section h2 {
    grid-column: 1 / -1;
  }

  .request-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .request-side {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }

  .cover-button {
    width: 82px;
    min-height: 100px;
  }
}

@media (max-width: 760px) {
  .login-screen,
  .app-shell {
    padding: 10px;
  }

  .topbar,
  .user-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: min(260px, 78vw);
  }

  .profile-grid,
  .stats,
  .toolbar,
  .contacts-toolbar,
  .contacts-shell,
  .contact-cards,
  .form-grid,
  .type-grid,
  .contact-editor-row,
  .sidebar,
  .sidebar-section {
    grid-template-columns: 1fr;
  }

  .login-card {
    min-height: auto;
  }

  .profile-card {
    min-height: 210px;
  }

  .profile-card img {
    width: 104px;
    height: 104px;
  }

  .contact-editor-row .wide,
  .contact-row-delete {
    grid-column: auto;
    grid-row: auto;
  }

  .request-card {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .cover-button {
    width: 74px;
    min-height: 92px;
  }

  .modal footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .modal footer > div {
    flex-direction: column-reverse;
  }

  .modal footer button {
    width: 100%;
  }
}
