.sv-component {
  --sv-border: rgba(255, 255, 255, .16);
  --sv-muted: #c7d2fe;
  --sv-surface: rgba(255, 255, 255, .08);
  --sv-text: #f8fbff;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(145deg, #0b123b 0%, #111631 56%, #1a1f33 100%);
  background-size: 56px 56px, 56px 56px, auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  color: var(--sv-text);
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.sv-component > * {
  position: relative;
  z-index: 1;
}

.sv-header {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}

.sv-header h1 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 .75rem;
}

.sv-hero {
  background: linear-gradient(145deg, rgba(26, 31, 51, .94), rgba(11, 18, 59, .88));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
}

.sv-hero h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 .35rem;
}

.sv-hero p {
  color: var(--sv-muted);
  margin: 0;
}

.sv-tile-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sv-home {
  --sv-awardox-navy: #0b123b;
  --sv-awardox-slate: #1a1f33;
  --sv-awardox-pink: #ff3d8a;
  --sv-awardox-violet: #8b5cf6;
  --sv-awardox-blue: #3b82f6;
  --sv-awardox-coral: #ff6b8e;
}

.sv-home .sv-hero {
  background: linear-gradient(145deg, rgba(26, 31, 51, .94), rgba(11, 18, 59, .88));
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.sv-home .sv-hero p {
  color: #c7cce1;
}

.sv-tile {
  background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  color: #fff;
  display: grid;
  gap: .55rem;
  min-height: 172px;
  min-width: 0;
  padding: 1.35rem 1.15rem;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.sv-tile:focus,
.sv-tile:hover {
  background: linear-gradient(145deg, rgba(255, 61, 138, .18), rgba(139, 92, 246, .10));
  border-color: rgba(255, 61, 138, .78);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .38), 0 0 38px rgba(139, 92, 246, .22);
  color: #fff;
  text-decoration: none;
  transform: translateY(-6px);
}

.sv-tile-icon {
  align-items: center;
  background: linear-gradient(135deg, #ff3d8a, #8b5cf6 58%, #3b82f6);
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  box-shadow: 0 10px 28px rgba(255, 61, 138, .25);
  height: 52px;
  justify-content: center;
  width: 52px;
}

.sv-tile:nth-child(4n + 2) .sv-tile-icon {
  background: linear-gradient(135deg, #ff3d8a, #8b5cf6 58%, #3b82f6);
  color: #fff;
}

.sv-tile:nth-child(4n + 3) .sv-tile-icon {
  background: linear-gradient(135deg, #ff3d8a, #8b5cf6 58%, #3b82f6);
  color: #fff;
}

.sv-tile:nth-child(4n) .sv-tile-icon {
  background: linear-gradient(135deg, #ff3d8a, #8b5cf6 58%, #3b82f6);
  color: #fff;
}

.sv-tile:nth-child(4n + 2):focus,
.sv-tile:nth-child(4n + 2):hover {
  border-color: rgba(255, 61, 138, .78);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .38), 0 0 38px rgba(139, 92, 246, .22);
}

.sv-tile:nth-child(4n + 3):focus,
.sv-tile:nth-child(4n + 3):hover {
  border-color: rgba(255, 61, 138, .78);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .38), 0 0 38px rgba(139, 92, 246, .22);
}

.sv-tile:nth-child(4n):focus,
.sv-tile:nth-child(4n):hover {
  border-color: rgba(255, 61, 138, .78);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .38), 0 0 38px rgba(139, 92, 246, .22);
}

.sv-tile-icon svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  width: 24px;
}

.sv-tile-title {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}

.sv-tile-text {
  color: #c7cce1;
  font-size: .92rem;
  line-height: 1.4;
}

.sv-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.sv-tabs a {
  border: 1px solid var(--sv-border);
  border-radius: 4px;
  color: inherit;
  display: inline-flex;
  font-weight: 600;
  min-height: 2.25rem;
  padding: .45rem .75rem;
  text-decoration: none;
}

.sv-tabs a:focus,
.sv-tabs a:hover {
  background: var(--sv-surface);
}

.sv-section {
  border-top: 1px solid var(--sv-border);
  padding: 1.5rem 0;
}

.sv-section:first-of-type {
  border-top: 0;
}

.sv-referral-card {
  background: linear-gradient(145deg, #ff1680 0%, #ef195d 44%, #b824b5 100%);
  border: 1px solid rgba(255, 104, 160, .85);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(239, 25, 93, .28);
  color: #fff;
  margin: 1.25rem 0 2rem;
  overflow: hidden;
  padding: 1.75rem;
  position: relative;
}

.sv-referral-card::after {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  content: "";
  height: 12rem;
  pointer-events: none;
  position: absolute;
  right: -4.5rem;
  top: -6rem;
  width: 12rem;
}

.sv-referral-card h2 {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 0 0 .7rem;
  position: relative;
}

.sv-referral-card label,
.sv-referral-card .sv-table-wrap,
.sv-referral-card .sv-muted {
  position: relative;
}

.sv-referral-card label > span {
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
}

.sv-referral-card .sv-muted {
  color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  line-height: 1.55;
  margin: .85rem 0 1.25rem;
  max-width: 48rem;
}

.sv-referral-card .sv-input {
  background: rgba(20, 12, 40, .24);
  border-color: rgba(255, 255, 255, .48);
  color: #fff;
  font-weight: 600;
}

.sv-referral-card .sv-input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 .16rem rgba(255, 255, 255, .24);
}

.sv-referral-card .sv-table {
  background: rgba(24, 10, 44, .18);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.sv-referral-card .sv-table th,
.sv-referral-card .sv-table td {
  border-color: rgba(255, 255, 255, .25);
}

.sv-referral-card .sv-table th {
  background: rgba(36, 10, 56, .2);
  color: #fff;
}

.sv-calendar-settings {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.sv-calendar-range-form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 1rem;
}

.sv-calendar-range-form label {
  font-weight: 700;
}

.sv-calendar-settings label {
  align-items: center;
  display: inline-flex;
  gap: .35rem;
  margin: 0;
}

.sv-calendar-months {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sv-calendar-month {
  border: 1px solid var(--sv-border);
  border-radius: 8px;
  min-height: 10rem;
  padding: .9rem;
}

.sv-calendar-month h2 {
  font-size: 1rem;
  margin: 0 0 .75rem;
}

.sv-calendar-month-entry {
  border-radius: 5px;
  font-size: .82rem;
  line-height: 1.25;
  margin: .4rem 0;
  position: relative;
}

.sv-calendar-month-trigger {
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-left: 3px solid #9ca7b6;
  border-radius: 5px;
  color: inherit;
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: .45rem;
  line-height: inherit;
  padding: .35rem .45rem;
  text-align: left;
  width: 100%;
}

.sv-calendar-month-trigger:hover,
.sv-calendar-month-trigger:focus {
  box-shadow: 0 0 0 2px rgba(139, 92, 246, .38);
  outline: 0;
}

.sv-calendar-month-trigger time {
  color: currentColor;
  font-weight: 800;
  min-width: 1.2rem;
}

.sv-calendar-month-entry.sv-calendar-state-interested {
  background: #ff3d8a;
  color: #fff;
}

.sv-calendar-month-entry.sv-calendar-state-submitted {
  background: #168d62;
  color: #fff;
}

.sv-calendar-month-entry.sv-calendar-state-skipped {
  background: #516071;
  color: #fff;
}

.sv-calendar-month-entry.sv-calendar-state-untracked {
  background: #eef1f5;
  color: #273242;
}

.sv-calendar-popover {
  background: #10152b;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  box-shadow: 0 16px 32px rgba(8, 13, 35, .45);
  color: #fff;
  display: none;
  left: 0;
  min-width: 17rem;
  padding: .85rem;
  position: absolute;
  top: calc(100% + .35rem);
  width: min(22rem, calc(100vw - 2rem));
  z-index: 30;
}

.sv-calendar-month-entry:hover .sv-calendar-popover,
.sv-calendar-month-entry:focus-within .sv-calendar-popover {
  display: block;
}

.sv-calendar-details {
  display: grid;
  gap: .28rem;
  margin: .65rem 0;
}

.sv-calendar-details div {
  display: grid;
  gap: .5rem;
  grid-template-columns: 6.3rem minmax(0, 1fr);
}

.sv-calendar-details dt {
  color: #bfc8dd;
  font-size: .72rem;
  font-weight: 700;
}

.sv-calendar-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.sv-calendar-link {
  color: #ff77ad;
  display: inline-block;
  margin-bottom: .75rem;
}

.sv-calendar-start-form {
  margin: 0 0 .6rem;
}

.sv-calendar-start-entry {
  background: #ff3d8a;
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  min-height: 2rem;
  padding: .35rem .65rem;
  width: 100%;
}

.sv-calendar-start-entry:hover,
.sv-calendar-start-entry:focus {
  background: #ff5a9d;
  box-shadow: 0 0 0 2px rgba(255, 119, 173, .35);
  outline: 0;
}

.sv-calendar-entry-start {
  margin-bottom: 1rem;
}

.sv-calendar-actions {
  display: grid;
  gap: .4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sv-calendar-actions form {
  margin: 0;
}

.sv-calendar-action {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: .74rem;
  font-weight: 700;
  min-height: 2rem;
  padding: .35rem .45rem;
  width: 100%;
}

.sv-calendar-action:hover,
.sv-calendar-action:focus,
.sv-calendar-action.is-active {
  border-color: transparent;
  color: #fff;
  outline: 0;
}

.sv-calendar-action-untracked:hover,
.sv-calendar-action-untracked.is-active {
  background: #697587;
}

.sv-calendar-action-interested:hover,
.sv-calendar-action-interested.is-active {
  background: #ff3d8a;
}

.sv-calendar-action-submitted:hover,
.sv-calendar-action-submitted.is-active {
  background: #168d62;
}

.sv-calendar-action-skipped:hover,
.sv-calendar-action-skipped.is-active {
  background: #516071;
}

.sv-calendar-state {
  border-radius: 999px;
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  padding: .4rem .55rem;
  white-space: nowrap;
}

.sv-calendar-state-interested {
  background: #fff0bd;
  color: #6a4700;
}

.sv-calendar-state-submitted {
  background: #d9f8ea;
  color: #08683e;
}

.sv-calendar-state-skipped,
.sv-calendar-state-untracked {
  background: #e9edf3;
  color: #536174;
}

.sv-section-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.sv-section-head h2 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}

.sv-entry-toolbar {
  justify-content: flex-start;
}

.sv-entry-strategy {
  align-items: center;
  display: flex;
  gap: .45rem;
  margin: 0;
}

.sv-entry-strategy span {
  color: var(--sv-muted);
  font-size: .84rem;
  font-weight: 700;
  white-space: nowrap;
}

.sv-entry-strategy .sv-select {
  min-width: 16rem;
  width: auto;
}

.sv-form {
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: 6px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.sv-inline-form {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.sv-grid-form {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.sv-filter-form {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.sv-component .sv-image-language-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, .25), rgba(11, 18, 59, .82));
  border-color: rgba(59, 130, 246, .48);
  box-shadow: 0 12px 30px rgba(3, 12, 39, .24);
}

.sv-component .sv-image-editor-card {
  background: linear-gradient(135deg, rgba(255, 61, 138, .24), rgba(139, 92, 246, .2) 54%, rgba(11, 18, 59, .86));
  border-color: rgba(255, 61, 138, .5);
  box-shadow: 0 16px 34px rgba(119, 26, 111, .24);
}

.sv-component .sv-image-search-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, .2), rgba(10, 25, 70, .82));
  border-color: rgba(91, 149, 255, .46);
  box-shadow: 0 12px 28px rgba(2, 12, 40, .26);
}

.sv-form label {
  display: grid;
  gap: .3rem;
  margin: 0;
}

.sv-form label span {
  color: var(--sv-muted);
  font-size: .875rem;
  font-weight: 600;
}

.sv-form-actions {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.sv-input,
.sv-select {
  border: 1px solid var(--sv-border);
  border-radius: 4px;
  min-height: 2.25rem;
  padding: .35rem .5rem;
  width: 100%;
}

.sv-input:focus,
.sv-select:focus {
  border-color: #2f7d7c;
  box-shadow: 0 0 0 .15rem rgba(47, 125, 124, .18);
  outline: none;
}

.sv-entry-table [readonly],
.sv-entry-table [disabled] {
  background: rgba(128, 137, 168, .14);
  cursor: not-allowed;
  opacity: .78;
}

.sv-table-wrap {
  overflow-x: auto;
}

.sv-table {
  min-width: 760px;
  vertical-align: middle;
}

.sv-entry-table {
  min-width: 1720px;
}

.sv-entry-image-info {
  align-items: center;
  display: flex;
  gap: .35rem;
  min-width: 15rem;
  position: relative;
}

.sv-entry-image-info .sv-select {
  min-width: 0;
}

.sv-entry-table [data-sv-contest-type],
#sv-contest-type-options {
  color: #fff;
  color-scheme: dark;
}

.sv-entry-category {
  min-width: 10rem;
}

.sv-entry-category-new {
  margin-top: .4rem;
}

#sv-contest-type-options option {
  background: #10152b;
  color: #fff;
}

.sv-image-picker {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.sv-image-picker.is-enhanced .sv-image-picker-native {
  display: none;
}

.sv-image-picker-trigger {
  align-items: center;
  background: rgba(9, 15, 39, .86);
  border: 1px solid var(--sv-border);
  border-radius: 4px;
  color: #f8fbff;
  display: flex;
  gap: .5rem;
  min-height: 2.25rem;
  overflow: hidden;
  padding: .2rem .45rem;
  text-align: left;
  width: 100%;
}

.sv-image-picker-trigger:hover,
.sv-image-picker-trigger:focus,
.sv-image-picker.is-open .sv-image-picker-trigger {
  border-color: #ff3d8a;
  box-shadow: 0 0 0 .15rem rgba(255, 61, 138, .16);
  outline: 0;
}

.sv-image-picker-trigger:disabled {
  cursor: not-allowed;
  opacity: .7;
}

.sv-image-picker-thumb {
  align-items: center;
  background: rgba(255, 61, 138, .16);
  border-radius: 3px;
  display: inline-flex;
  flex: 0 0 2rem;
  height: 2rem;
  justify-content: center;
  overflow: hidden;
  width: 2rem;
}

.sv-image-picker-thumb.is-empty::before {
  color: #ff9cc3;
  content: "Image";
  font-size: .58rem;
  font-weight: 700;
}

.sv-image-picker-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sv-image-picker-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-image-picker-menu {
  background: #10152b;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  box-shadow: 0 18px 36px rgba(8, 13, 35, .52);
  left: 0;
  min-width: 18rem;
  padding: .5rem;
  position: absolute;
  top: calc(100% + .3rem);
  width: min(24rem, 75vw);
  z-index: 80;
}

.sv-image-picker-search {
  background: rgba(5, 9, 27, .78);
  border: 1px solid var(--sv-border);
  border-radius: 4px;
  color: #f8fbff;
  margin-bottom: .45rem;
  min-height: 2.25rem;
  padding: .35rem .5rem;
  width: 100%;
}

.sv-image-picker-options {
  display: grid;
  gap: .2rem;
  max-height: 18rem;
  overflow-y: auto;
}

.sv-image-picker-option {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 4px;
  color: #f8fbff;
  display: flex;
  gap: .55rem;
  min-width: 0;
  padding: .35rem;
  text-align: left;
  width: 100%;
}

.sv-image-picker-option:hover,
.sv-image-picker-option:focus,
.sv-image-picker-option[aria-selected="true"] {
  background: rgba(255, 61, 138, .22);
  outline: 0;
}

.sv-image-picker-option > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-entry-image-info-trigger {
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Georgia, serif;
  font-size: .82rem;
  font-weight: 700;
  height: 1.65rem;
  justify-content: center;
  padding: 0;
  width: 1.65rem;
}

.sv-entry-image-info-trigger:hover,
.sv-entry-image-info-trigger:focus {
  background: #ff3d8a;
  border-color: #ff77ad;
  outline: 0;
}

.sv-entry-image-popover {
  background: #10152b;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  box-shadow: 0 16px 32px rgba(8, 13, 35, .45);
  color: #fff;
  display: none;
  left: 0;
  min-width: 18rem;
  padding: .85rem;
  position: absolute;
  top: calc(100% + .4rem);
  width: max-content;
  z-index: 40;
}

.sv-entry-image-info[data-sv-image-selected="0"] .sv-entry-image-popover {
  display: none !important;
}

.sv-entry-image-info:hover .sv-entry-image-popover,
.sv-entry-image-info:focus-within .sv-entry-image-popover,
.sv-entry-image-info.is-open .sv-entry-image-popover {
  display: block;
}

.sv-image-title-info {
  display: inline-block;
  max-width: 100%;
  position: relative;
}

.sv-image-title-info:focus {
  outline: 0;
}

.sv-image-title-trigger {
  border-bottom: 1px dotted rgba(255, 119, 173, .78);
  cursor: default !important;
}

.sv-image-title-popover {
  background: #10152b;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  box-shadow: 0 16px 32px rgba(8, 13, 35, .45);
  color: #fff;
  display: none;
  left: 0;
  min-width: 15rem;
  padding: .85rem;
  pointer-events: none;
  position: absolute;
  top: 100%;
  width: max-content;
  z-index: 40;
}

.sv-image-title-info:hover .sv-image-title-popover,
.sv-image-title-info:focus-within .sv-image-title-popover {
  display: block;
}

.sv-entry-image-details {
  display: grid;
  gap: .35rem;
  margin: 0;
}

.sv-entry-image-details div {
  display: grid;
  gap: .8rem;
  grid-template-columns: minmax(8.5rem, 1fr) auto;
}

.sv-entry-image-details dt {
  color: #c7d2fe;
  font-size: .75rem;
  font-weight: 700;
}

.sv-entry-image-details dd {
  margin: 0;
  text-align: right;
}

.sv-entry-table th,
.sv-stats-table th {
  white-space: nowrap;
}

.sv-stats-table {
  min-width: 980px;
}

.sv-fiap-diploma-table {
  min-width: 1560px;
}

.sv-fiap-level-table {
  min-width: 1180px;
}

.sv-summary-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1rem;
}

.sv-summary-grid > div {
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: 6px;
  display: grid;
  gap: .25rem;
  padding: .75rem;
}

.sv-summary-grid span {
  color: var(--sv-muted);
  font-size: .85rem;
  font-weight: 600;
}

.sv-admin-summary-grid > div {
  background: linear-gradient(145deg, rgba(59, 130, 246, .16), rgba(139, 92, 246, .12));
  min-height: 6.2rem;
}

.sv-admin-summary-grid strong {
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.15;
}

.sv-admin-dashboard-table {
  min-width: 1840px;
}

.sv-admin-user-meta {
  color: var(--sv-muted);
  display: block;
  font-size: .78rem;
  margin-top: .25rem;
}

.sv-license-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  padding: .38rem .55rem;
  white-space: nowrap;
}

.sv-license-active,
.sv-license-manual {
  background: #dff3e8;
  color: #155c34;
}

.sv-license-expiring {
  background: #fff1d6;
  color: #7a4d00;
}

.sv-license-expired,
.sv-license-none {
  background: #f5dfe5;
  color: #8a2341;
}

.sv-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
  padding: .35rem .55rem;
}

.sv-badge-ok {
  background: #dff3e8;
  color: #155c34;
}

.sv-badge-warn {
  background: #fff1d6;
  color: #7a4d00;
}

[data-sv-column-reorder] th[draggable="true"] {
  cursor: move;
}

.sv-dragging {
  opacity: .55;
}

.sv-wide {
  min-width: 190px;
}

.sv-compact {
  min-width: 82px;
}

.sv-date {
  min-width: 145px;
}

.sv-url {
  min-width: 260px;
}

.sv-link-field {
  align-items: center;
  display: flex;
  gap: .35rem;
  min-width: 360px;
}

.sv-actions,
.sv-row-actions {
  white-space: nowrap;
}

.sv-actions {
  width: 1%;
}

.sv-actions form {
  display: inline-flex;
  margin: 0 0 0 .35rem;
}

.sv-row-actions {
  align-items: center;
  display: flex;
  gap: .35rem;
}

.sv-thumb {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--sv-border);
  border-radius: 4px;
  display: block;
  object-fit: cover;
  width: 88px;
}

.sv-preview-link {
  display: inline-flex;
  position: relative;
}

.sv-preview {
  background: #fff;
  border: 1px solid var(--sv-border);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(29, 39, 51, .18);
  display: none;
  left: 0;
  padding: .35rem;
  position: absolute;
  top: calc(100% + .35rem);
  width: 212px;
  z-index: 20;
}

.sv-preview img {
  display: block;
  max-height: 200px;
  object-fit: contain;
  width: 200px;
}

.sv-preview-link:focus .sv-preview,
.sv-preview-link:hover .sv-preview {
  display: block;
}

.sv-muted,
.sv-locked {
  color: var(--sv-muted);
  font-size: .875rem;
}

.sv-locked {
  display: inline-flex;
  min-height: 2rem;
  place-items: center;
}

.sv-tile-locked {
  border-style: dashed;
  opacity: .78;
}

.sv-plan-options {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sv-plan-option {
  align-items: flex-start;
  border: 1px solid var(--sv-border);
  border-radius: 8px;
  display: flex;
  gap: .65rem;
  min-height: 6rem;
  padding: .85rem;
}

.sv-plan-option:has(input:checked) {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, .28);
}

/* Shared Results work surface, aligned with the Awardox Contest tile interface. */
.sv-component .sv-section {
  border-color: rgba(255, 255, 255, .12);
}

.sv-component .sv-section-head h2,
.sv-component h2,
.sv-component h3 {
  color: #f8fbff;
}

.sv-component .sv-tabs a,
.sv-component .btn-secondary {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

.sv-component .sv-tabs a:focus,
.sv-component .sv-tabs a:hover,
.sv-component .btn-secondary:focus,
.sv-component .btn-secondary:hover {
  background: rgba(255, 61, 138, .18);
  border-color: rgba(255, 61, 138, .65);
  color: #fff;
}

.sv-component .btn-primary {
  background: #ff3d8a;
  border-color: #ff3d8a;
  color: #fff;
}

.sv-component .btn-primary:focus,
.sv-component .btn-primary:hover {
  background: #ed1f70;
  border-color: #ed1f70;
  color: #fff;
}

.sv-component .sv-form,
.sv-component .sv-summary-grid > div,
.sv-component .sv-plan-option {
  background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  border-color: rgba(255, 255, 255, .16);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.sv-component .sv-form label span,
.sv-component .sv-summary-grid span,
.sv-component .sv-muted,
.sv-component .sv-locked {
  color: #c7d2fe;
}

/* Image management uses separate color surfaces for selection, editing and search. */
.sv-component .sv-form.sv-image-language-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, .36), rgba(49, 30, 122, .52)) !important;
  border-color: rgba(91, 149, 255, .72) !important;
  box-shadow: 0 14px 32px rgba(24, 81, 202, .2) !important;
}

.sv-component .sv-form.sv-image-editor-card {
  background: linear-gradient(135deg, rgba(255, 61, 138, .48), rgba(139, 92, 246, .38) 56%, rgba(15, 20, 70, .82)) !important;
  border-color: rgba(255, 97, 161, .8) !important;
  box-shadow: 0 18px 38px rgba(211, 30, 123, .3) !important;
}

.sv-component .sv-form.sv-image-search-card {
  background: linear-gradient(135deg, rgba(36, 125, 246, .4), rgba(9, 49, 128, .66) 54%, rgba(7, 16, 54, .9)) !important;
  border-color: rgba(80, 161, 255, .78) !important;
  box-shadow: 0 16px 34px rgba(10, 85, 207, .28) !important;
}

/* Personal dashboard and image lifecycle. */
.sv-lifecycle-hero {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sv-lifecycle-hero h1 {
  margin: 0;
}

.sv-lifecycle-hero p {
  margin: .3rem 0 0;
}

.sv-lifecycle-image {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  height: 96px;
  object-fit: cover;
  width: 128px;
}

.sv-lifecycle-summary > div,
.sv-user-dashboard-kpis > div,
.sv-fee-grid > div {
  min-height: 5.5rem;
}

.sv-lifecycle-summary strong,
.sv-user-dashboard-kpis strong,
.sv-fee-grid strong {
  color: #fff;
  font-size: 1.45rem;
}

.sv-dashboard-columns {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sv-dashboard-section {
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.sv-dashboard-section .sv-section-head {
  align-items: baseline;
  display: flex;
  gap: .75rem;
  justify-content: space-between;
}

.sv-dashboard-section .sv-section-head h2 {
  font-size: 1.05rem;
  margin: 0;
}

.sv-dashboard-section .sv-section-head a,
.sv-mini-list a {
  color: #ff70ad;
}

.sv-mini-list {
  display: grid;
  gap: .2rem;
}

.sv-mini-list > div,
.sv-mini-list > a {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  gap: .18rem;
  padding: .65rem 0;
  text-decoration: none;
}

.sv-mini-list > :last-child {
  border-bottom: 0;
}

.sv-mini-list strong {
  color: #fff;
}

.sv-mini-list .sv-dashboard-contest-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.sv-mini-list .sv-dashboard-contest-link:hover,
.sv-mini-list .sv-dashboard-contest-link:focus-visible {
  color: #ff70ad;
  text-decoration: underline;
}

.sv-mini-list span {
  color: #c7d2fe;
  font-size: .86rem;
}

.sv-top-image-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sv-top-image-card {
  background: rgba(7, 12, 37, .48);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sv-top-image-card img,
.sv-top-image-placeholder {
  aspect-ratio: 4 / 3;
  background: rgba(4, 8, 27, .75);
  color: #c7d2fe;
  display: grid;
  object-fit: cover;
  place-items: center;
  width: 100%;
}

.sv-top-image-card h3 {
  font-size: .95rem;
  margin: .7rem .7rem .15rem;
}

.sv-top-image-card p {
  color: #c7d2fe;
  font-size: .82rem;
  margin: 0 .7rem .7rem;
}

.sv-top-image-card .btn {
  align-self: flex-start;
  margin: auto .7rem .75rem;
}

.sv-dashboard-image-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: 1rem;
}

.sv-dashboard-image-pagination span {
  color: #c7d2fe;
  font-size: .86rem;
  font-weight: 700;
}

#sv-dashboard-top-images {
  scroll-margin-top: 1rem;
}

.sv-country-map-section {
  background: linear-gradient(135deg, rgba(18, 32, 93, .92), rgba(15, 11, 51, .9));
  border-color: rgba(139, 92, 246, .34);
}

.sv-country-map-description {
  margin: -.25rem 0 1rem;
  max-width: 56rem;
}

.sv-country-map-filters {
  align-items: end;
  background: rgba(4, 9, 33, .42);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 7px;
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  margin: 0 0 1rem;
  padding: .85rem;
}

.sv-country-map-filters label {
  display: grid;
  gap: .3rem;
  min-width: 0;
}

.sv-country-map-filters label > span {
  color: #c7d2fe;
  font-size: .8rem;
  font-weight: 700;
}

.sv-country-map-filters .btn {
  min-height: 2.5rem;
}

.sv-country-map-shell {
  position: relative;
}

.sv-country-map {
  align-items: center;
  background: radial-gradient(circle at 50% 45%, rgba(62, 76, 164, .31), rgba(5, 10, 35, .84) 65%);
  border: 1px solid rgba(164, 182, 255, .24);
  border-radius: 7px;
  display: grid;
  min-height: 19rem;
  overflow: hidden;
  position: relative;
}

.sv-country-map::after {
  background-image: linear-gradient(rgba(165, 180, 252, .065) 1px, transparent 1px), linear-gradient(90deg, rgba(165, 180, 252, .065) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.sv-country-map svg {
  display: block;
  height: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}

.sv-country-map-country {
  cursor: pointer;
  stroke: rgba(222, 229, 255, .36);
  stroke-linejoin: round;
  stroke-width: .6;
  transition: filter .14s ease, stroke .14s ease, stroke-width .14s ease;
}

.sv-country-map-country:focus,
.sv-country-map-country:hover {
  filter: brightness(1.28) drop-shadow(0 0 4px rgba(255, 119, 173, .6));
  outline: none;
  stroke: #fff;
  stroke-width: 1.25;
}

.sv-country-map-status,
.sv-country-map-empty {
  color: #c7d2fe;
  margin: auto;
  padding: 1rem;
  position: relative;
  text-align: center;
  z-index: 2;
}

.sv-country-map-empty {
  background: rgba(5, 10, 35, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
}

.sv-country-map-tooltip {
  background: rgba(5, 9, 31, .98);
  border: 1px solid rgba(255, 119, 173, .72);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .44), 0 0 20px rgba(139, 92, 246, .24);
  color: #fff;
  max-width: 17rem;
  padding: .72rem .78rem;
  pointer-events: none;
  position: absolute;
  width: max-content;
  z-index: 4;
}

.sv-country-map-tooltip strong {
  display: block;
  font-size: .96rem;
  margin-bottom: .48rem;
}

.sv-country-map-tooltip dl {
  display: grid;
  gap: .24rem .85rem;
  grid-template-columns: auto auto;
  margin: 0;
}

.sv-country-map-tooltip dt {
  color: #c7d2fe;
  font-size: .78rem;
}

.sv-country-map-tooltip dd {
  font-size: .8rem;
  font-weight: 800;
  margin: 0;
  text-align: right;
}

.sv-country-map-rank {
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #ffb2d2;
  font-size: .78rem;
  font-weight: 700;
  margin: .55rem 0 0;
  padding-top: .52rem;
}

.sv-country-map-legend {
  align-items: center;
  color: #c7d2fe;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .55rem;
  padding: .65rem .15rem 0;
}

.sv-country-map-legend span {
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 2px;
  display: block;
  height: .75rem;
  width: .75rem;
}

.sv-country-map-legend .is-empty { background: #1a2349; }
.sv-country-map-legend .is-entered { background: #3b82f6; }
.sv-country-map-legend .is-accepted { background: #ff3d8a; }
.sv-country-map-legend small { font-size: .73rem; }

.sv-backup-section h3 {
  font-size: 1rem;
  margin: 1.4rem 0 .4rem;
}

.sv-backup-review {
  margin-top: 1rem;
}

.sv-backup-summary {
  display: grid;
  gap: .25rem;
  list-style: none;
  margin: .75rem 0 1rem;
  max-width: 30rem;
  padding: 0;
}

.sv-backup-summary li {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  padding: .35rem 0;
}

@media (max-width: 1000px) {
  .sv-top-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .sv-lifecycle-hero {
    align-items: flex-start;
  }

  .sv-lifecycle-image {
    height: 72px;
    width: 96px;
  }

  .sv-top-image-grid {
    grid-template-columns: 1fr;
  }

  .sv-country-map-filters {
    grid-template-columns: 1fr;
  }

  .sv-country-map-filters .btn {
    justify-self: start;
  }

  .sv-country-map {
    min-height: 13rem;
  }
}

.sv-component .sv-input,
.sv-component .sv-select,
.sv-component input[type="date"],
.sv-component input[type="number"],
.sv-component input[type="text"],
.sv-component input[type="email"],
.sv-component textarea,
.sv-component select {
  background: rgba(7, 12, 37, .62);
  border-color: rgba(255, 255, 255, .22);
  color: #f8fbff;
}

.sv-component .sv-input:focus,
.sv-component .sv-select:focus,
.sv-component input[type="date"]:focus,
.sv-component input[type="number"]:focus,
.sv-component input[type="text"]:focus,
.sv-component input[type="email"]:focus,
.sv-component textarea:focus,
.sv-component select:focus {
  border-color: #ff3d8a;
  box-shadow: 0 0 0 .15rem rgba(255, 61, 138, .24);
}

.sv-component .sv-table,
.sv-component .table {
  --bs-table-bg: rgba(5, 11, 35, .36);
  --bs-table-color: #f8fbff;
  --bs-table-striped-bg: rgba(255, 255, 255, .055);
  --bs-table-striped-color: #f8fbff;
  --bs-table-border-color: rgba(255, 255, 255, .14);
  background: rgba(5, 11, 35, .36);
  border-color: rgba(255, 255, 255, .14);
  color: #f8fbff;
}

.sv-component .sv-table th,
.sv-component .table th {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.sv-component .sv-table th,
.sv-component .sv-table td,
.sv-component .table th,
.sv-component .table td {
  border-color: rgba(255, 255, 255, .14);
}

.sv-component .sv-table a,
.sv-component .table a,
.sv-component .pagination a {
  color: #ff77ad;
}

.sv-component .pagination .page-link {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
}

.sv-component .pagination .active .page-link,
.sv-component .pagination .page-link:focus,
.sv-component .pagination .page-link:hover {
  background: #ff3d8a;
  border-color: #ff3d8a;
  color: #fff;
}

.sv-component .alert {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(255, 255, 255, .18);
  color: #1a1f33;
}

/* Contest discovery and subscription use the same prominent, dark Awardox work surface. */
.sv-page-eyebrow {
  color: #ff77ad;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0 0 .55rem;
}

.sv-latest-hero,
.sv-subscription-hero {
  background: linear-gradient(135deg, rgba(255, 61, 138, .22), rgba(139, 92, 246, .18) 46%, rgba(11, 18, 59, .72));
  border: 1px solid rgba(255, 119, 173, .42);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(13, 8, 44, .28);
  margin-bottom: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.sv-latest-hero h1,
.sv-subscription-hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.14;
  margin: 0 0 .55rem;
}

.sv-latest-hero > p:last-child,
.sv-subscription-hero > p:last-of-type {
  color: #e5e7ff;
  margin: 0;
  max-width: 46rem;
}

.sv-latest-toolbar {
  align-items: end;
  background: rgba(4, 10, 33, .5);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  display: flex;
  gap: .75rem;
  margin: 0 0 1.5rem;
  padding: .9rem;
}

.sv-latest-toolbar label {
  display: grid;
  gap: .3rem;
  max-width: 13rem;
}

.sv-latest-toolbar label span {
  color: #c7d2fe;
  font-size: .82rem;
  font-weight: 700;
}

.sv-latest-contest-section {
  margin: 0 0 1.75rem;
}

.sv-latest-table {
  min-width: 680px;
}

.sv-latest-col-title,
.sv-latest-col-id {
  text-align: left;
}

.sv-latest-col-date {
  text-align: center;
  white-space: nowrap;
}

.sv-latest-col-fee {
  text-align: center;
  white-space: nowrap;
}

.sv-latest-col-format {
  text-align: center;
  white-space: nowrap;
}

.sv-latest-col-actions {
  text-align: right;
  white-space: nowrap;
}

.sv-latest-table td {
  padding-bottom: .8rem;
  padding-top: .8rem;
}

.sv-latest-table .btn-primary {
  min-width: 6.4rem;
}

.sv-last-entered {
  text-align: center;
  white-space: nowrap;
}

.sv-last-entered-none {
  color: #ff4d6d;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.sv-latest-section-head {
  align-items: center;
  display: flex;
  gap: .55rem;
  margin: 0 0 .75rem;
}

.sv-latest-section-head h2 {
  font-size: 1.2rem;
  margin: 0;
}

.sv-latest-section-marker {
  border-radius: 50%;
  box-shadow: 0 0 18px currentColor;
  color: #3b82f6;
  height: .68rem;
  width: .68rem;
}

.sv-latest-section-marker--mafosz {
  color: #ff3d8a;
}

.sv-latest-contest-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sv-latest-empty {
  background: rgba(255, 255, 255, .055);
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: 8px;
  color: #c7d2fe;
  margin: 0;
  padding: 1rem;
}

.sv-latest-contest-card {
  background: linear-gradient(145deg, rgba(31, 43, 92, .94), rgba(11, 18, 59, .96));
  border: 1px solid rgba(155, 174, 255, .32);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  display: grid;
  gap: 1rem;
  grid-template-rows: auto 1fr auto;
  min-height: 15rem;
  padding: 1.2rem;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.sv-latest-contest-card:hover {
  border-color: rgba(255, 95, 159, .84);
  box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 0 26px rgba(139, 92, 246, .2);
  transform: translateY(-3px);
}

.sv-latest-contest-header {
  display: grid;
  gap: .75rem;
}

.sv-latest-contest-type {
  background: rgba(59, 130, 246, .2);
  border: 1px solid rgba(59, 130, 246, .52);
  border-radius: 999px;
  color: #dbeafe;
  font-size: .72rem;
  font-weight: 800;
  padding: .27rem .52rem;
}

.sv-latest-contest-card--mafosz .sv-latest-contest-type {
  background: rgba(255, 61, 138, .18);
  border-color: rgba(255, 119, 173, .58);
  color: #ffe1ee;
}

.sv-latest-contest-card h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0;
}

.sv-latest-contest-data {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: .8rem 0;
}

.sv-latest-contest-data div {
  align-items: baseline;
  display: grid;
  gap: .65rem;
  grid-template-columns: 8rem minmax(0, 1fr);
}

.sv-latest-contest-data dt {
  color: #bdc8f3;
  font-size: .76rem;
  font-weight: 800;
}

.sv-latest-contest-data dd {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin: 0;
  overflow-wrap: anywhere;
}

.sv-latest-link {
  align-items: center;
  background: rgba(255, 61, 138, .14);
  border: 1px solid rgba(255, 119, 173, .5);
  border-radius: 5px;
  color: #ffd0e3;
  display: inline-flex;
  font-size: .87rem;
  font-weight: 800;
  justify-content: center;
  min-height: 2.4rem;
  padding: .4rem .75rem;
  text-decoration: none;
  white-space: nowrap;
}

.sv-latest-link:hover,
.sv-latest-link:focus {
  background: #ff3d8a;
  border-color: #ff3d8a;
  color: #fff;
  text-decoration: none;
}

.sv-subscription-status {
  background: rgba(4, 12, 40, .44);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  color: #fff;
  font-weight: 700;
  margin-top: 1.1rem;
  padding: .7rem .85rem;
}

.sv-subscription-page .sv-subscription-referral {
  margin-top: 0;
}

.sv-subscription-form {
  display: grid;
  gap: 1rem;
}

.sv-subscription-section {
  background: rgba(4, 10, 33, .45);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 1.1rem;
}

.sv-subscription-billing {
  background: linear-gradient(145deg, rgba(59, 130, 246, .14), rgba(255, 255, 255, .035));
  border-color: rgba(91, 149, 255, .38);
}

.sv-subscription-fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.sv-subscription-fieldset legend {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 .85rem;
  padding: 0;
}

.sv-subscription-page .sv-plan-options {
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.sv-subscription-page .sv-plan-option {
  align-items: flex-start;
  border-radius: 8px;
  cursor: pointer;
  min-height: 7rem;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.sv-subscription-page .sv-plan-option:hover {
  border-color: rgba(255, 119, 173, .7);
  transform: translateY(-2px);
}

.sv-subscription-page .sv-plan-option span {
  display: grid;
  gap: .28rem;
}

.sv-subscription-page .sv-plan-option b {
  color: #ffb2d2;
  font-size: 1.02rem;
}

.sv-subscription-page .sv-plan-option small {
  color: #c7d2fe;
  line-height: 1.3;
}

.sv-subscription-page .sv-grid-form label {
  display: grid;
  gap: .3rem;
}

.sv-subscription-page .sv-grid-form label span {
  color: #c7d2fe;
  font-size: .875rem;
  font-weight: 700;
}

.sv-subscription-actions {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .sv-component .sv-tile-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .sv-form {
    padding: .75rem;
  }

  .sv-inline-form {
    align-items: stretch;
    display: grid;
  }

  .sv-section-head {
    align-items: stretch;
    display: grid;
  }

  .sv-plan-options {
    grid-template-columns: 1fr;
  }

  .sv-calendar-months {
    grid-template-columns: 1fr;
  }

  .sv-latest-toolbar {
    align-items: stretch;
    display: grid;
  }

  .sv-latest-toolbar label {
    max-width: none;
  }

  .sv-latest-toolbar .btn,
  .sv-latest-link {
    justify-self: start;
  }

  .sv-subscription-actions .btn {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .sv-component .sv-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .sv-component .sv-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
