/* src/index/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/* src/index/index.css */
body {
  margin: 0;
  font-family:
    -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;
}
code {
  font-family:
    source-code-pro,
    Menlo,
    Monaco,
    Consolas,
    "Courier New",
    monospace;
}

/* src/ui/ui.css */
.a-rounded {
}
.a-padded-component {
}
.a-padded-page {
  padding: 50px;
}
.a-margined {
}
.a-inline {
}
.a-preserve-whitespace {
  white-space: pre-wrap;
}
.a-box {
  display: flex;
  flex-direction: column;
  position: relative;
}
.a-box-inline {
  display: inline-flex;
}
.a-flow {
  display: block;
}
.a-box-grow {
  flex-grow: 1;
}
.a-box-stretch {
  align-self: stretch;
}
.a-box-center-items {
  align-items: center;
}
.a-box-overflow-scroll-x {
  flex-grow: 1;
  overflow: auto;
  width: 0;
}
.a-box-overflow-scroll-y {
  flex-grow: 1;
  overflow: auto;
  height: 0;
}
.a-box-minheight-full {
  min-height: 100%;
}
.a-box-minheight-nonscrollingpageheight {
  min-height: var(--non-scrolling-page-height);
}
.a-box-maxheight-nonscrollingpageheight {
  max-height: calc(100vh - var(--nav-height));
}
.a-box-wrap {
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
}
.a-hsplit {
  flex-direction: column;
}
.a-vsplit {
  flex-direction: row;
}
.a-box-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.a-box-noshrink {
  flex-shrink: 0;
}
.a-overlay {
  position: absolute;
}
.a-overlay-top {
  top: 0;
}
.a-overlay-right {
  right: 0;
}
.a-overlay-top-right {
  top: 0;
  right: 0;
}
.a-effect-hidden-until-hover {
  display: none;
}
.a-box:has(> .a-effect-hidden-until-hover):hover .a-effect-hidden-until-hover {
  display: unset;
}
.a-hnav {
}
.a-vnav {
  padding: 20px 0;
  border-right: 1px solid var(--color-primary);
}
.a-vnav .a-nav-item {
  margin-left: 20px;
}
.a-nav-item {
  padding: 10px 25px;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.a-nav-item-active {
}
.a-nav-linkitem {
  color: var(--color-primary);
  text-decoration: none;
}
.a-nav-item-active.a-nav-linkitem {
  background-color: #ddd;
  color: black;
}
.app-flashmessage {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translate(-50%, 0);
  z-index: 999999;
  border: 2px solid darkgreen;
  width: 80%;
  background-color: #efe;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  color: black;
}
label.ui-label-link {
  cursor: pointer;
}
label.ui-label-link:hover .ui-label-link-text {
  text-decoration: underline;
}
.ui-label-link-text {
}
.ui-input-label-inline {
  display: inline;
}
.ui-input-label-block {
  display: block;
  margin-bottom: 5px;
}
.ui-textinput {
  padding: 5px;
}
.ui-textarea {
  border-radius: 5px;
  padding: 10px;
}
span.ui-link-button {
  color: var(--color-primary);
  user-select: none;
  display: inline-block;
  padding: 5px;
}
span.ui-link-button:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* src/marketplace/Marketplace.css */
.marketplace {
}
.marketplace-filters {
  padding: 20px;
  border: 2px solid #555;
  min-width: 300px;
  margin: 40px;
  margin-right: 0;
  border-radius: var(--panel-corner-radius);
  background-color: var(--color-panel-1-background);
}
.marketplace-filters h1 {
  font-size: 24px;
}
.marketplace-results {
  padding-left: 20px;
  padding-top: 20px;
}
.marketplace-result {
  display: inline-block;
  width: 220px;
  height: 200px;
  border: 2px solid gray;
  margin: 20px;
  padding: 20px;
  border-radius: var(--panel-corner-radius);
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.75);
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  color: unset;
  text-decoration: none;
  background-color: var(--color-panel-1-background);
}
.marketplace-result:hover {
  border: 2px solid rgb(165, 165, 165);
  background-color: var(--color-panel-1-background-hover);
}
.marketplace-result-profile-icon {
  width: 80px;
  height: 80px;
  border-radius: 80px;
}
.marketplace-result-profile-name {
  font-weight: bold;
  font-size: 16px;
  font-size: 20px;
  margin-bottom: 5px;
}
.marketplace-result-listing {
}
.marketplace-result-listing-name {
  font-weight: bold;
  font-size: 16px;
  font-size: 20px;
  margin-bottom: 10px;
  text-overflow: ellipsis;
}
.marketplace-result-listing-img {
  width: 100%;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* src/common/modal/modal.css */
.pagemodal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  overflow-y: auto;
  padding: 2rem;
}
.pagemodal {
  min-width: 45vw;
  max-width: 70vw;
  min-height: 10rem;
  max-height: 80vh;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}
.pagemodal-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 1rem;
}
.pagemodal-header-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.pagemodal-header-closeicon-hitarea {
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  color: #d1d5db;
}
.pagemodal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  color: #d1d5db;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
}
.pagemodal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.pagemodal-header-closeicon-hitarea:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.pagemodal-header-closeicon {
  font-size: 1rem;
  line-height: 1;
}
.pagemodal-body {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-around;
  gap: 0.75rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.pagemodal-body > * {
  max-width: 100%;
  flex: 1;
}
.pagemodal-footer {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  position: sticky;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.pagemodal-footer button {
  border: none;
  border-radius: 0.25rem;
  padding: 0.375rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.pagemodal-footer .cancel {
  background: transparent;
  color: #e5e7eb;
}
.pagemodal-footer .cancel:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.pagemodal-footer .save {
  background-color: #2563eb;
  color: #fff;
}
.pagemodal-footer .save:hover {
  background-color: #1d4ed8;
}
.pagemodal-footer .save:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* src/common/components/components.css */
.app-button {
  background-color: red;
  display: inline-flex;
  padding: 15px 20px;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  color: black;
  align-items: center;
  justify-content: center;
}
.app-button:hover {
  text-decoration: none;
}
.app-button-size-small {
  background-color: unset;
  font-size: 12px;
  padding: 5px 10px;
}
.app-button-size-medium {
  background-color: unset;
  font-size: 14px;
  padding: 12px 16px;
}
.app-button-size-large {
  background-color: unset;
  font-size: 16px;
  padding: 16px 24px;
}
.app-button-size-full {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.app-button-shape-normal {
  border-radius: 6px;
}
.app-button-shape-pill {
  border-radius: 2rem;
}
.app-button-shape-round {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.app-button-disabled {
  opacity: 0.3;
  cursor: unset;
}
.app-button-type-primary {
  background-color: var(--color-primary-blue);
  color: white;
}
.app-button-type-normal {
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  color: #000;
}
.app-button-type-ghost {
  background: transparent;
  border: 1px solid #ccc;
  color: #e4e6eb;
}
.app-button-type-upload {
  background: #6a6d82;
  border: 1px solid #6a6d82;
  color: #fff;
}
.app-button-type-remove {
  background: #3c3f52;
  border: 1px solid #3c3f52;
  color: #fff;
}
.app-button-type-delete {
  background: #8d2020;
  border: 1px solid #8d2020;
  color: #fff;
}
.app-button-type-message {
  background: #000000;
  border: 1px solid #000000;
  color: #fff;
}
.app-button-type-edit {
  background: #4a90e2;
  border: 1px solid #4a90e2;
  color: #fff;
}
.app-button-type-primary:hover {
  background-color: var(--color-primary-blue-hover);
}
.app-button-type-normal:hover {
  background: #6c6c6c;
  border-color: #6c6c6c;
}
.app-button-type-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #e0e0e0;
  color: #f0f2f5;
}
.app-button-type-upload:hover {
  background: #8a8c9c;
  border-color: #5f6274;
}
.app-button-type-remove:hover {
  background: #35384a;
  border-color: #35384a;
}
.app-button-type-delete:hover {
  background: #d56a6a;
  border-color: #d56a6a;
}
.app-button-type-message:hover {
  background: #424242;
  border-color: #424242;
}
.app-button-type-edit:hover {
  background: #357abd;
  border-color: #357abd;
}
.app-button-type-primary.app-button-disabled:hover {
  background-color: var(--color-primary-blue);
}
.app-button-companion-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
}
.app-com-status {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid gray;
  user-select: none;
  text-decoration: none;
  margin: 5px;
}

/* src/pages/profile/Profile.css */
.profile {
  background-color: var(--color-site-background);
}
.profile-editbutton {
  float: right;
  cursor: pointer;
}
.profile-editbutton:hover {
  text-decoration: underline;
}
.profile-head,
.profile-body {
  margin: 10px 20px;
  background-color: var(--color-panel-1-background);
  border: 1px solid gray;
  border-radius: 10px;
  padding: 30px;
  padding-bottom: 60px;
  margin-bottom: 40px;
}
.profile-head {
  align-items: start;
}
.profile-body {
  padding: 20px 40px;
}
@media (width <= 700px) {
  .profile-head {
    flex-direction: column;
    border: 5px solid blue;
    align-items: center;
  }
}
.profile-toprightbuttons {
  margin: 20px;
  z-index: 9;
}
.profile-image {
  width: 200px;
  height: 200px;
  margin: 20px;
  position: relative;
}
.profile-image-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 15px;
  border-radius: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.profile-image-editcontrols {
  display: none;
  position: absolute;
  right: 0;
}
.profile-image:hover .profile-image-editcontrols {
  display: block;
}
.profile-overview {
  margin: 20px 40px;
  margin-left: 60px;
}
.profile-overview-name {
  font-size: 48px;
  margin-top: 0;
  margin-bottom: 15px;
}
.profile-overview-items {
}
.profile-overview-item {
  font-size: 20px;
  display: inline-block;
}
.profile-overview-description {
  margin: 20px 0;
}
.profile-overview-description-label {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.profile-overview-description-value {
}
.profile-body-head {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: bold;
}
.profile-overview-sociallinks-list {
  list-style-type: none;
  padding: 0;
}
.profile-overview-sociallinks-list-item {
  margin-bottom: 10px;
}
.profile-overview-sociallinks-list-item-icon {
  font-size: 24px;
  vertical-align: middle;
}
.profile-overview-sociallinks-list-item-icon-generic {
  font-size: 18px;
}
.profile-overview-sociallinks-list-item-link {
  margin-left: 10px;
}
.profile .marketplace-result {
  background-color: var(--color-panel-2-background);
}
.profile .marketplace-result:hover {
  background-color: var(--color-panel-2-background-hover);
}

/* src/pages/listings/listing.css */
.listing-detail {
}
.listing-detail-headerinfo {
}
.listing-detail-headerinfo-contenttype {
}
.listing-detail-overview {
}
.listing-detail-editlink {
  float: right;
}
.listing-detail-img {
}
.listing-detail-info {
  margin-left: 40px;
  flex-grow: 1;
}
.listing-detail-authorinfo {
  margin-bottom: 20px;
}
.listing-detail-authorinfo-authorlink {
  font-weight: bold;
}
.listing-detail-description {
}
.listing-detail-gallery-main {
  width: 500px;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-panel-1-background);
  background-size: contain;
}
.listing-detail-gallery-main-video {
  background-color: black;
}
.listing-detail-gallery-main-video-play {
  font-size: 144px;
  text-align: center;
  line-height: 400px;
  background-color: rgba(127, 127, 127, 0.5);
  cursor: pointer;
}
.listing-detail-gallery-main-video-play:hover {
  text-shadow: 0 0 10px white;
}
.listing-detail-gallery-main-video-playing {
}
.listing-detail-gallery-main-audio {
  width: 500px;
  height: 130px;
}
.listing-detail-gallery-main-audio-name {
  text-align: center;
  padding-top: 80px;
  font-weight: bold;
}
.listing-detail-gallery-list {
  width: 500px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}
.listing-detail-gallery-list-img {
  width: 80px;
  height: 80px;
  border: 1px solid gray;
  display: inline-block;
  cursor: pointer;
  margin-right: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.listing-detail-gallery-list-img-current {
  border: 3px solid black;
}
.listing-detail-price {
  text-align: right;
}
.listing-detail-price-value {
  font-size: 24px;
}
.listing-detail-reportlink {
  color: red;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
.listing-detail-reportlink:hover {
  text-decoration: underline;
}
.listing-detail-comments {
  width: 700px;
  margin: 0 auto;
  margin-top: 40px;
  min-height: 500px;
}
.listing-detail-comments h1 {
  font-size: 24px;
}
.listing-detail-comments-form {
  margin-bottom: 30px;
}
.listing-detail-comments-form-instructions {
  font-size: 14px;
}
.listing-detail-comments-form-stars {
  user-select: none;
  font-size: 24px;
  display: inline-block;
}
.listing-detail-comments-form-stars-star {
  display: inline-block;
  cursor: pointer;
  color: gray;
}
.listing-detail-comments-form-stars-star-filled {
  color: gold;
}
.listing-detail-comments-form-description {
}
.listing-detail-comments-form-description-textarea {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
}
.listing-detail-comments-list {
}
.listing-detail-comments-list-review {
  margin: 20px 0;
  padding: 5px;
}
.listing-detail-comments-list-review-user {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.listing-detail-comments-list-review-user-icon {
  width: 32px;
  height: 32px;
  border-radius: 40px;
}
.listing-detail-comments-list-review-user-name {
  margin: 10px;
}
.listing-detail-comments-list-review-stars-row {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.listing-detail-comments-list-review-stars {
  margin: 5px 0;
}
.listing-detail-comments-list-review-stars-star {
  display: inline-block;
  color: gray;
}
.listing-detail-comments-list-review-stars-star-filled {
  color: gold;
}
.listing-detail-comments-list-review-stars-row-info {
}
.listing-create {
  width: 800px;
  margin: 0 auto;
  text-align: center;
}
.listing-create-mediafiles {
}
.listing-create-mediafiles-file {
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.listing-create-mediafiles-file-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  vertical-align: middle;
}
.listing-create-mediafiles-file-info {
  display: inline-block;
  width: 250px;
  vertical-align: middle;
}
.listing-create-mediafiles-file:hover {
  border: 1px solid lightgray;
  background-color: var(--color-panel-2-background);
}
.listing-create-mediafiles-file:hover .listing-create-mediafiles-file-closeicon-hitarea {
  display: block;
}
.listing-create-mediafiles-file-closeicon-hitarea {
  float: right;
  cursor: pointer;
  padding: 5px;
  display: none;
}
.listing-create-mediafiles-file-closeicon {
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  color: white;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
}
.listing-create-mediafiles-file-closeicon-hitarea:hover .listing-create-mediafiles-file-closeicon {
  background-color: white;
  border-color: white;
  color: black;
}
.listing-edit {
}
.listing-edit-fileattachments {
  border: 2px solid white;
  margin-bottom: 40px;
  background-color: var(--color-panel-1-background);
  border-radius: var(--panel-corner-radius);
  padding: 20px;
}
.searchbar-select-create {
  width: 60%;
  padding: 8px;
  font-size: 12px;
  color: white;
  border-radius: 1rem;
  background-color: #3b3a3a;
  margin-left: 4px;
}

/* src/components/ToastNotification.css */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast-notification {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 300px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  border-left: 4px solid;
}
.toast-notification-visible {
  opacity: 1;
  transform: translateX(0);
}
.toast-notification-exiting {
  opacity: 0;
  transform: translateX(100%);
}
.toast-notification-success {
  border-left-color: #10b981;
}
.toast-notification-error {
  border-left-color: #ef4444;
}
.toast-notification-warning {
  border-left-color: #f59e0b;
}
.toast-notification-info {
  border-left-color: #3b82f6;
}
.toast-notification-content {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  gap: 12px;
}
.toast-notification-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.toast-notification-text {
  flex: 1;
  min-width: 0;
}
.toast-notification-title {
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.4;
}
.toast-notification-message {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}
.toast-notification-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
  transition: color 0.2s ease;
}
.toast-notification-close:hover {
  color: #6b7280;
  background-color: #f3f4f6;
}
@media (max-width: 480px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }
  .toast-notification {
    min-width: auto;
    max-width: none;
  }
}

/* src/components/DragDropZone.css */
.drag-drop-zone {
  position: relative;
  transition: all 0.3s ease;
  overflow: visible;
  overflow-y: visible;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.drag-drop-zone.a-box-maxheight-nonscrollingpageheight {
  max-height: none;
  overflow-y: visible;
}
.drag-drop-zone-active {
  overflow: visible;
}
.drag-drop-zone-active * {
  overflow: hidden;
}
body.drag-active {
  overflow: hidden;
}
.drag-drop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--color-panel-1-background);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border: 3px dashed var(--color-accent);
  border-radius: 12px;
  animation: dragDropPulse 2s ease-in-out infinite;
  opacity: 0.95;
  transition: opacity 0.2s ease;
  box-shadow: 0 8px 32px rgba(240, 255, 0, 0.3);
  overflow: hidden;
  box-sizing: border-box;
}
.drag-drop-content {
  text-align: center;
  color: var(--color-primary);
  padding: 20px;
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  box-sizing: border-box;
}
.drag-drop-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: dragDropBounce 1s ease-in-out infinite;
}
.drag-drop-text {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.drag-drop-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--color-accent);
}
.drag-drop-subtitle {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 8px;
}
.drag-drop-subtitle div {
  margin-bottom: 4px;
}
@keyframes dragDropPulse {
  0%, 100% {
    background: var(--color-panel-1-background);
    border-color: var(--color-primary);
    opacity: 0.95;
  }
  50% {
    background: var(--color-panel-1-background-hover);
    border-color: var(--color-accent);
    opacity: 1;
  }
}
@keyframes dragDropBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .drag-drop-content {
    padding: 20px;
  }
  .drag-drop-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .drag-drop-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .drag-drop-subtitle {
    font-size: 13px;
  }
}
.drag-drop-zone:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
@media (prefers-contrast: high) {
  .drag-drop-overlay {
    background: var(--color-panel-2-background);
    border-color: var(--color-primary);
  }
  .drag-drop-content {
    color: var(--color-primary);
  }
}
.drag-drop-file-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.drag-drop-file-type {
  background: var(--color-panel-2-background);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.drag-drop-file-type-icon {
  font-size: 14px;
}
.drag-drop-multiple-indicator {
  background: var(--color-accent);
  color: var(--color-site-background);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
}
.drag-drop-guidance {
  margin-top: 20px;
  padding: 16px;
  background: var(--color-panel-2-background);
  border-radius: 8px;
  border: 1px solid var(--color-primary);
}
.drag-drop-guidance-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-accent);
}
.drag-drop-guidance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drag-drop-guidance-list li {
  font-size: 13px;
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
}
.drag-drop-guidance-list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}
@media (prefers-reduced-motion: reduce) {
  .drag-drop-zone {
    transition: none;
  }
  .drag-drop-overlay {
    animation: none;
  }
  .drag-drop-icon {
    animation: none;
  }
}

/* src/components/ChunkingIndicator.css */
.chunking-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-left: 8px;
  vertical-align: middle;
}
.chunking-indicator-chunked {
  background: #e8f5e8;
  color: #2d5a2d;
  border-color: #a8d5a8;
}
.chunking-indicator-chunked:hover {
  background: #d4edda;
  border-color: #7cb342;
}
.chunking-indicator-single {
  background: #e3f2fd;
  color: #1565c0;
  border-color: #90caf9;
}
.chunking-indicator-single:hover {
  background: #bbdefb;
  border-color: #42a5f5;
}
.chunking-indicator-icon {
  font-size: 14px;
  line-height: 1;
}
.chunking-indicator-text {
  white-space: nowrap;
}
.chunking-indicator-count {
  font-size: 9px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.3);
  padding: 1px 4px;
  border-radius: 6px;
  margin-left: 2px;
}
.chunking-indicator.compact {
  font-size: 11px;
  padding: 2px 6px;
}
.chunking-indicator.compact .chunking-indicator-icon {
  font-size: 12px;
}
.chunking-indicator.inline {
  display: inline-flex;
  margin-left: 8px;
  font-size: 11px;
  padding: 3px 8px;
  vertical-align: middle;
}
@media (prefers-color-scheme: dark) {
  .chunking-indicator-chunked {
    background: #2d5a2d;
    color: #a8d5a8;
    border-color: #1e3a1e;
  }
  .chunking-indicator-chunked:hover {
    background: #1e3a1e;
    border-color: #2d5a2d;
  }
  .chunking-indicator-single {
    background: #2a4365;
    color: #90cdf4;
    border-color: #1e3a1e;
  }
  .chunking-indicator-single:hover {
    background: #1e3a1e;
    border-color: #2a4365;
  }
}
@media (max-width: 768px) {
  .chunking-indicator {
    font-size: 11px;
    padding: 2px 6px;
    margin-left: 6px;
  }
  .chunking-indicator-icon {
    font-size: 12px;
  }
  .chunking-indicator-count {
    font-size: 9px;
  }
}

/* src/components/ChunkingToggle.css */
.chunking-toggle {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.chunking-toggle-header h3 {
  margin: 0 0 16px 0;
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
}
.chunking-toggle-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chunking-toggle-option {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: white;
}
.chunking-toggle-option:hover {
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}
.chunking-toggle-option:has(input:checked) {
  border-color: #007bff;
  background: #f0f8ff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}
.chunking-toggle-label {
  display: block;
  cursor: pointer;
  padding: 16px;
  margin: 0;
}
.chunking-toggle-radio {
  display: none;
}
.chunking-toggle-option-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chunking-toggle-option-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 16px;
}
.chunking-toggle-icon {
  font-size: 20px;
}
.chunking-toggle-option-description {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.4;
}
.chunking-toggle-option-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.chunking-toggle-benefit {
  background: #e8f5e8;
  color: #2d5a2d;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.chunking-toggle-option:has(input:checked) .chunking-toggle-benefit {
  background: #d4edda;
  color: #155724;
}
.chunking-toggle-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  background: #e3f2fd;
  border-radius: 6px;
  border-left: 4px solid #2196f3;
}
.chunking-toggle-info-icon {
  font-size: 16px;
}
.chunking-toggle-info-text {
  color: #1565c0;
  font-size: 14px;
  font-weight: 500;
}
.chunking-toggle-compact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  min-width: 280px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.chunking-toggle-compact:hover {
  background: #e9ecef;
  border-color: #007bff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.15);
}
.chunking-toggle-compact-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.chunking-toggle-compact-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #495057;
}
.chunking-toggle-compact-icon {
  font-size: 16px;
}
.chunking-toggle-compact-text {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.chunking-toggle-compact-description {
  font-size: 11px;
  color: #6c757d;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chunking-toggle-compact-options {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.chunking-toggle-compact-btn {
  background: transparent;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 60px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.chunking-toggle-compact-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
  transform: translateY(-1px);
}
.chunking-toggle-compact-btn.active {
  background: #007bff;
  border-color: #007bff;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}
.chunking-toggle-compact-btn.active:hover {
  background: #0056b3;
  border-color: #0056b3;
  transform: translateY(-1px);
}
.chunking-toggle-compact-btn-icon {
  font-size: 14px;
  line-height: 1;
}
.chunking-toggle-compact-btn-text {
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .chunking-toggle {
    padding: 16px;
    margin: 16px 0;
  }
  .chunking-toggle-option-benefits {
    flex-direction: column;
    align-items: flex-start;
  }
  .chunking-toggle-benefit {
    width: fit-content;
  }
  .chunking-toggle-compact {
    font-size: 12px;
    padding: 6px 10px;
    min-width: 240px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .chunking-toggle-compact-header {
    width: 100%;
  }
  .chunking-toggle-compact-options {
    width: 100%;
    justify-content: space-between;
  }
  .chunking-toggle-compact-btn {
    font-size: 11px;
    padding: 4px 8px;
    min-width: 50px;
    height: 28px;
    flex: 1;
  }
  .chunking-toggle-compact-btn-text {
    font-size: 9px;
  }
}
@media (prefers-color-scheme: dark) {
  .chunking-toggle {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  .chunking-toggle-header h3 {
    color: #e2e8f0;
  }
  .chunking-toggle-option {
    background: #1a202c;
    border-color: #4a5568;
  }
  .chunking-toggle-option:hover {
    border-color: #63b3ed;
  }
  .chunking-toggle-option:has(input:checked) {
    border-color: #63b3ed;
    background: #2a4365;
  }
  .chunking-toggle-option-title {
    color: #e2e8f0;
  }
  .chunking-toggle-option-description {
    color: #a0aec0;
  }
  .chunking-toggle-benefit {
    background: #2d5a2d;
    color: #a8d5a8;
  }
  .chunking-toggle-option:has(input:checked) .chunking-toggle-benefit {
    background: #1e3a1e;
    color: #c3e6c3;
  }
  .chunking-toggle-info {
    background: #2a4365;
    border-left-color: #63b3ed;
  }
  .chunking-toggle-info-text {
    color: #90cdf4;
  }
  .chunking-toggle-compact {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  .chunking-toggle-compact:hover {
    background: #4a5568;
    border-color: #63b3ed;
    box-shadow: 0 2px 6px rgba(99, 179, 237, 0.2);
  }
  .chunking-toggle-compact-label {
    color: #e2e8f0;
  }
  .chunking-toggle-compact-text {
    color: #e2e8f0;
  }
  .chunking-toggle-compact-description {
    color: #a0aec0;
  }
  .chunking-toggle-compact-btn {
    background: transparent;
    border-color: #4a5568;
    color: #a0aec0;
  }
  .chunking-toggle-compact-btn:hover {
    background: #4a5568;
    border-color: #63b3ed;
    color: #e2e8f0;
    transform: translateY(-1px);
  }
  .chunking-toggle-compact-btn.active {
    background: #63b3ed;
    border-color: #63b3ed;
    color: white;
    box-shadow: 0 2px 4px rgba(99, 179, 237, 0.4);
  }
  .chunking-toggle-compact-btn.active:hover {
    background: #4299e1;
    border-color: #4299e1;
    transform: translateY(-1px);
  }
}

/* src/components/SecurePlayer.css */
.secure-player-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.secure-player-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
.secure-player-audio {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.secure-player-audio-visualizer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.secure-player-audio-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      #1a0a2e 0%,
      #16213e 25%,
      #0f3460 50%,
      #533483 75%,
      #1a0a2e 100%);
  background-size: 400% 400%;
  animation: secure-player-gradient-shift 15s ease infinite;
  opacity: 0.9;
}
.secure-player-audio-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(124, 58, 237, 0.15) 0%,
      transparent 70%);
  animation: secure-player-radial-pulse 4s ease-in-out infinite;
}
.secure-player-audio-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 60%);
  animation: secure-player-radial-pulse 6s ease-in-out infinite reverse;
}
@keyframes secure-player-radial-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@keyframes secure-player-gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.secure-player-audio-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 600px;
  padding: 40px;
}
.secure-player-audio-icon {
  width: 180px;
  height: 180px;
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  filter: drop-shadow(0 8px 24px rgba(124, 58, 237, 0.4));
}
.secure-player-audio-icon.playing {
  animation: secure-player-pulse-icon 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(124, 58, 237, 0.6));
}
@keyframes secure-player-pulse-icon {
  0%, 100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
.secure-player-audio-icon svg {
  width: 100%;
  height: 100%;
}
.secure-player-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 80px;
  padding: 0 20px;
}
.secure-player-waveform-bar {
  flex: 1;
  min-width: 3px;
  max-width: 8px;
  height: 20%;
  background:
    linear-gradient(
      180deg,
      rgba(124, 58, 237, 0.8) 0%,
      rgba(139, 92, 246, 0.9) 50%,
      rgba(167, 139, 250, 1) 100%);
  border-radius: 2px;
  animation: secure-player-waveform-animate 1.2s ease-in-out infinite;
  transform-origin: center;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
  transition: all 0.2s ease;
}
.secure-player-waveform-bar:nth-child(odd) {
  animation-duration: 1.4s;
}
.secure-player-waveform-bar:nth-child(even) {
  animation-duration: 1s;
}
.secure-player-waveform-bar:nth-child(3n) {
  animation-duration: 1.6s;
}
.secure-player-waveform-bar:nth-child(5n) {
  animation-duration: 0.9s;
}
@keyframes secure-player-waveform-animate {
  0%, 100% {
    transform: scaleY(0.2);
    opacity: 0.5;
  }
  25% {
    transform: scaleY(0.6);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  75% {
    transform: scaleY(0.7);
    opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .secure-player-audio-icon {
    width: 140px;
    height: 140px;
  }
  .secure-player-audio-content {
    gap: 30px;
    padding: 30px 20px;
  }
  .secure-player-waveform {
    height: 60px;
    gap: 3px;
  }
}
@media (max-width: 480px) {
  .secure-player-audio-icon {
    width: 120px;
    height: 120px;
  }
  .secure-player-audio-content {
    gap: 24px;
    padding: 24px 16px;
  }
  .secure-player-waveform {
    height: 50px;
    gap: 2px;
  }
}
.secure-player-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #2d2d2d 100%);
}
.secure-player-loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: secure-player-fade-in 0.3s ease-out;
}
.secure-player-spinner-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}
.secure-player-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: secure-player-spin 1s linear infinite;
}
.secure-player-spinner-inner {
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: secure-player-spin-reverse 0.8s linear infinite;
}
@keyframes secure-player-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes secure-player-spin-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes secure-player-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.secure-player-loading-text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.secure-player-loading-subtext {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.secure-player-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #fff;
  padding: 20px;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #2d2d2d 100%);
  animation: secure-player-fade-in 0.3s ease-out;
}
.secure-player-error-icon {
  font-size: 56px;
  margin-bottom: 20px;
  opacity: 0.8;
  animation: secure-player-pulse 2s ease-in-out infinite;
}
@keyframes secure-player-pulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.secure-player-error-message {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.secure-player-protection-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(12px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: secure-player-slide-in 0.4s ease-out;
  cursor: default;
  user-select: none;
  transition: all 0.2s ease;
}
.secure-player-protection-badge:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.secure-player-lock-icon {
  font-size: 14px;
  opacity: 0.9;
}
@keyframes secure-player-slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.secure-player-buffering {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  animation: secure-player-fade-in 0.2s ease-out;
}
.secure-player-buffering-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: secure-player-spin 0.8s linear infinite;
  margin-bottom: 12px;
}
.secure-player-buffering-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.secure-player-info {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: secure-player-slide-up 0.4s ease-out;
}
@keyframes secure-player-slide-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.secure-player-plays {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}
.secure-player-info-icon {
  font-size: 13px;
  opacity: 0.7;
}
.secure-player-error .secure-player-protection-badge {
  position: relative;
  top: auto;
  right: auto;
  margin-top: 12px;
}
.secure-player-expired {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #fff;
  padding: 20px;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #2d2d2d 100%);
  animation: secure-player-fade-in 0.3s ease-out;
  position: relative;
}
.secure-player-expired-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 400px;
  width: 100%;
}
.secure-player-expired-icon {
  font-size: 64px;
  margin-bottom: 24px;
  opacity: 0.9;
  animation: secure-player-pulse 2s ease-in-out infinite;
}
.secure-player-expired-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.secure-player-expired-message {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
  max-width: 100%;
}
.secure-player-regenerate-button {
  background:
    linear-gradient(
      135deg,
      #4f46e5 0%,
      #7c3aed 100%);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 160px;
  justify-content: center;
}
.secure-player-regenerate-button:hover:not(:disabled) {
  background:
    linear-gradient(
      135deg,
      #5b52f0 0%,
      #8b5cf6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}
.secure-player-regenerate-button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}
.secure-player-regenerate-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.secure-player-button-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: secure-player-spin 0.8s linear infinite;
}
.secure-player-expired .secure-player-protection-badge {
  position: relative;
  top: auto;
  right: auto;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .secure-player-container {
    border-radius: 4px;
  }
  .secure-player-protection-badge {
    top: 8px;
    right: 8px;
    padding: 6px 12px;
    font-size: 11px;
  }
  .secure-player-info {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 8px 12px;
    font-size: 10px;
    flex-direction: column;
    gap: 6px;
  }
  .secure-player-expiration,
  .secure-player-plays {
    justify-content: center;
  }
  .secure-player-loading-text {
    font-size: 14px;
  }
  .secure-player-loading-subtext {
    font-size: 12px;
  }
  .secure-player-expired-icon {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .secure-player-expired-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .secure-player-expired-message {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .secure-player-regenerate-button {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 140px;
  }
}
.secure-player-video,
.secure-player-audio {
  transition: opacity 0.3s ease-out;
}
.secure-player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.7) 100%);
  padding: 10px 12px 12px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease-in-out;
  z-index: 20;
}
.secure-player-controls.visible,
.secure-player-container:focus-within .secure-player-controls {
  opacity: 1;
  pointer-events: auto;
}
.secure-player-container.audio-mode .secure-player-controls {
  opacity: 1;
  pointer-events: auto;
}
.secure-player-controls-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  flex-wrap: nowrap;
}
.sp-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 36px;
  min-width: 36px;
  padding: 0 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 120ms ease, transform 80ms ease;
}
.sp-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.sp-btn:active:not(:disabled) {
  transform: translateY(1px);
}
.sp-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.sp-timeline {
  height: 36px;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}
.sp-timeline-track {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.sp-timeline.disabled .sp-timeline-track {
  cursor: not-allowed;
  opacity: 0.6;
}
.sp-timeline-buffer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  width: 0;
}
.sp-timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #7c3aed;
  border-radius: inherit;
  width: 0;
}
.sp-timeline-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.3);
  pointer-events: none;
}
.sp-time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  min-width: 96px;
  text-align: center;
  white-space: nowrap;
}
.sp-volume {
  width: 110px;
  height: 36px;
  display: flex;
  align-items: center;
  flex: 0 0 110px;
}
.sp-volume-track {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.sp-volume.disabled .sp-volume-track {
  cursor: not-allowed;
  opacity: 0.6;
}
.sp-volume-level {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #10b981;
  border-radius: inherit;
  width: 0;
}
.secure-player-fullscreen .secure-player-controls {
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .secure-player-controls-row {
    gap: 8px;
  }
  .sp-time {
    display: none;
  }
  .sp-volume {
    width: 80px;
  }
}
.secure-player-watermark-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.secure-player-watermark-image {
  opacity: 0.75;
  max-width: 350px;
  max-height: 350px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transition: opacity 0.3s ease;
  display: block;
}
@media (max-width: 768px) {
  .secure-player-watermark-image {
    max-width: 200px;
    max-height: 200px;
    opacity: 0.65;
  }
}
@media (max-width: 480px) {
  .secure-player-watermark-image {
    max-width: 150px;
    max-height: 150px;
    opacity: 0.6;
  }
}
@media (prefers-reduced-motion: reduce) {
  .secure-player-spinner,
  .secure-player-spinner-inner,
  .secure-player-buffering-spinner,
  .secure-player-pulse {
    animation: none;
  }
  .secure-player-fade-in,
  .secure-player-slide-in,
  .secure-player-slide-up {
    animation: none;
  }
}

/* src/pages/file-library/file-library.css */
.filelib {
  width: 100%;
  overflow: visible;
}
.filelib-lmenu {
  width: 200px;
}
.fileman {
  flex-grow: 1;
  padding: 10px;
  overflow-y: visible;
  overflow-x: hidden;
  position: relative;
  min-height: fit-content;
}
.fileman.a-box-maxheight-nonscrollingpageheight {
  max-height: none;
  overflow-y: visible;
}
.fileman-pathparts {
  font-size: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}
.fileman-pathparts-content {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.fileman-pathparts-controls {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}
@media (max-width: 768px) {
  .fileman-pathparts {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .fileman-pathparts-content {
    width: 100%;
  }
  .fileman-pathparts-controls {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .fileman-pathparts {
    gap: 8px;
  }
  .fileman-pathparts-controls {
    justify-content: stretch;
  }
}
.fileman-pathparts-part {
  padding: 5px;
  cursor: pointer;
  text-decoration: unset;
  color: var(--color-primary);
}
.fileman-pathparts-part:hover {
  text-shadow: 0px 0px 1px black;
  text-decoration: underline;
}
.fileman-pathparts-part:visited {
  color: unset;
}
.fileman-table-container {
  padding: 10px;
  border-radius: 10px;
  height: auto;
  min-height: fit-content;
  width: auto;
  background-color: var(--color-panel-1-background);
  position: relative;
  box-sizing: border-box;
}
.fileman-table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
}
.fileman-headerrow > th {
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-primary);
}
.fileman-headerrow > th:nth-child(2) {
  text-align: left;
}
.fileman-filerow td {
  padding: 1rem;
  border-top: 1px solid #ddd;
  overflow: visible;
  text-overflow: ellipsis;
}
.fileman-filerow:nth-child(1) td {
  border-top-color: transparent;
}
.fileman-filerow > td:first-child {
  width: 50px;
}
.fileman-filerow:hover > td {
  background-color: var(--color-panel-1-background-hover);
  cursor: pointer;
}
.fileman-filerow-selected > td,
.fileman-filerow-selected:hover > td {
  background-color: rgb(52, 52, 189);
  color: white;
}
.fileman-filerow-icon {
  width: 40px;
  height: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fileman-filerow-name,
.fileman-filerow-concretetype,
.fileman-filerow-size {
  padding-right: 20px;
}
.fileman-filerow-submenu {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  font-weight: bold;
  user-select: none;
  position: relative;
}
.fileman-filerow-submenu:hover {
  background-color: gray;
}
.fileman-filerow-submenu-icon {
  position: relative;
  top: -1px;
}
.fileman-filerow-submenu-menu-container {
  position: absolute;
  right: 20px;
  top: 0;
  width: 120px;
  border: 1px solid gray;
  background-color: var(--color-panel-2-background);
  z-index: 999;
  font-weight: normal;
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
}
.fileman-filerow-submenu-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.fileman-filerow-submenu-menu li {
  text-align: left;
  padding-left: 10px;
}
li.fileman-filerow-submenu-menu-li-blank {
  padding-left: 0;
}
a.fileman-filerow-submenu-menu-atag {
  display: block;
  padding-left: 10px;
}
.fileman-filerow-submenu-menu li:hover {
  background-color: var(--color-panel-2-background-hover);
}
.fileman-emptynote {
  padding-top: 40px;
  padding-bottom: 20px;
  padding-left: 10px;
}
.fileman-sharemodal {
  text-align: left;
}
.fileman-sharemodal-userlistinput {
  padding: 5px;
  border: 1px solid gray;
  border-radius: 5px;
  margin-bottom: 15px;
  background-color: var(--form-text-input-background-color);
}
.fileman-sharemodal-userlistinput-item,
.fileman-sharemodal-userlistinput-textinput {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: black;
}
.fileman-sharemodal-userlistinput-item {
  border-radius: 5px;
  background-color: rgb(193 214 255);
  position: relative;
}
.fileman-sharemodal-userlistinput-item-remove {
  display: inline-block;
  cursor: pointer;
  padding-left: 15px;
  padding-right: 5px;
}
.fileman-sharemodal-userlistinput-item-remove:hover {
  font-weight: bold;
}
.fileman-sharemodal-userlistinput-textinput[type=text] {
  border: none;
  outline: none;
  width: unset;
}
.fileman-sharemodal-userlistinput-dropdown {
  border: 1px solid gray;
  padding: 5px 0;
  border-radius: 5px;
  position: absolute;
  min-width: 200px;
  background-color: var(--color-panel-2-background);
}
.fileman-sharemodal-userlistinput-dropdown-item {
  padding: 5px 10px;
  cursor: pointer;
}
.fileman-sharemodal-userlistinput-dropdown-item:hover {
  background-color: var(--color-panel-2-background-hover);
}
.fileview {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  backdrop-filter: blur(1px);
  display: flex;
  z-index: 999;
}
.fileview-close {
  color: white;
  font-size: 40px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  width: 70px;
  height: 70px;
  text-align: center;
  cursor: pointer;
  z-index: 999;
  border-radius: 70px;
}
.fileview-close:hover {
  background-color: rgba(127, 127, 127, 0.5);
}
.fileview-content {
  flex-grow: 3;
  position: relative;
  min-width: 60%;
}
.fileview-content-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.fileview-content-imgimg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fileview-content-video {
  width: 100%;
  height: 100%;
}
.fileview-content-audio {
  height: 50%;
  width: 100%;
}
.fileview-info {
  flex-grow: 1;
  background-color: var(--color-panel-1-background);
  padding: 40px;
  min-width: 33%;
}
.fileview-info-mediatype {
  margin-top: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
  float: left;
}
.fileview-info-name {
  font-size: 24px;
  margin-bottom: 20px;
  overflow-wrap: break-word;
}
.fileview-decrypt-status {
  margin: 10px 0;
  padding: 8px 12px;
  background: #e3f2fd;
  border: 1px solid #bbdefb;
  border-radius: 6px;
  color: #1565c0;
}
.fileview-decrypt-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.fileview-decrypt-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #e3f2fd;
  border-top: 2px solid #1565c0;
  border-radius: 50%;
  animation: fileview-decrypt-spin 1s linear infinite;
}
@keyframes fileview-decrypt-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fileview-decrypt-error {
  margin: 10px 0;
  padding: 8px 12px;
  background: #ffebee;
  border: 1px solid #ffcdd2;
  border-radius: 6px;
  color: #c62828;
  font-size: 14px;
  font-weight: 500;
}
.fileview-info-filesize {
  margin-bottom: 10px;
}
.fileview-info-owner {
  margin-bottom: 10px;
}
.fileview-info-expiration {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 6px;
  color: #ff9800;
  font-size: 13px;
  font-weight: 500;
}
.fileview-info-comments {
  margin: 40px 0;
}
.fileview-info-comments-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.fileview-info-comments-form {
}
.fileview-info-comments-form-title {
  font-weight: bold;
  margin-bottom: 20px;
}
.fileview-info-comments-form-textarea {
  padding: 15px;
  border-radius: 10px;
  width: 100%;
}
.fileview-info-comments-list {
}
.fileview-info-comments-list-comment {
  margin: 20px 0;
  margin-bottom: 40px;
}
.fileview-info-comments-list-comment-user {
  display: flex;
  align-items: center;
}
.fileview-info-comments-list-comment-user-icon {
  width: 32px;
  height: 32px;
  border-radius: 32px;
}
.fileview-info-comments-list-comment-user-name {
  margin: 0 10px;
  font-size: 14px;
  font-weight: bold;
}
.fileview-info-comments-list-comment-body {
  margin: 10px 0;
  padding-left: 42px;
}
.filechooser {
  height: 500px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.filechooser .fileman-pathparts {
  font-size: 20px;
}
.filechooser-selectedinfo {
  height: 120px;
  text-align: center;
  padding: 10px;
}
.filechooser .fileman-table-container {
  min-height: 320px;
  overflow: auto;
}
.fileman-upload-progressbar {
}
.fileman-upload-progressbar-bar {
  background-color: lightblue;
  border-radius: 5px;
  height: 20px;
}
.fileman-upload-progressbar-bar-progress {
  background-color: rgb(45, 45, 195);
  border-radius: 5px;
  height: 100%;
}
.fileman-sharedwithme {
}
.fileman-upload-area {
  border: 2px dashed var(--color-primary);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin: 20px 0;
  background: var(--color-panel-2-background);
  transition: all 0.3s ease;
}
.fileman-upload-area:hover {
  border-color: var(--color-accent);
  background: var(--color-panel-2-background-hover);
}
.fileman-upload-area-empty {
  border-style: dashed;
  border-color: var(--color-primary);
  opacity: 0.7;
}
.fileman-upload-area-empty:hover {
  opacity: 1;
  border-color: var(--color-accent);
}
.fileman-upload-area-with-files {
  border: 1px dashed var(--color-primary);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  margin: 12px 0;
  background: var(--color-panel-2-background);
  transition: all 0.3s ease;
  opacity: 0.8;
}
.fileman-upload-area-with-files:hover {
  border-color: var(--color-accent);
  background: var(--color-panel-2-background-hover);
  opacity: 1;
}
.fileman-upload-area-with-files .fileman-upload-prompt {
  font-size: 16px;
  margin-bottom: 8px;
}
.fileman-upload-area-with-files .fileman-upload-instructions {
  font-size: 13px;
  margin-bottom: 16px;
}
.fileman-upload-area-with-files .fileman-upload-buttons {
  gap: 12px;
}
.fileman-upload-area-with-files .fileman-upload-button {
  padding: 10px 20px;
  font-size: 13px;
}
.fileman-upload-prompt {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.fileman-upload-prompt-accent {
  color: var(--color-accent);
  font-weight: 600;
}
.fileman-upload-instructions {
  font-size: 14px;
  color: var(--color-primary);
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.4;
}
.fileman-upload-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fileman-upload-button {
  background: var(--color-panel-1-background);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fileman-upload-button:hover {
  background: var(--color-panel-1-background-hover);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.fileman-upload-button-primary {
  background: var(--color-accent);
  color: var(--color-site-background);
  border-color: var(--color-accent);
}
.fileman-upload-button-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-site-background);
}
.fileman-upload-icon {
  font-size: 16px;
}
.fileman-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-primary);
  opacity: 0.7;
}
.fileman-empty-state-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.5;
}
.fileman-empty-state-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-accent);
}
.fileman-empty-state-description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.fileman-empty-state-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.choose-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000;
}
.choose-btn:hover {
  background-color: #a6a6a7;
}

/* src/pages/cart/cart.css */
.cartpage {
  min-width: 800px;
}
.cartpage-list {
}
.cartpage-list-item-sep {
  border-bottom: 2px solid #434343;
  margin: 1rem 0;
}
.cartpage-list-item {
  padding: 15px 0;
  display: flex;
}
.cartpage-list-item-image {
}
.cartpage-list-item-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 10px;
  display: block;
}
.cartpage-list-item-body {
  flex-grow: 1;
  margin-left: 20px;
}
.cartpage-list-item-quantity {
  margin-top: 20px;
}
.cartpage-list-item-quantity-label {
  font-weight: bold;
  display: inline;
}
.cartpage-list-item-quantity-value {
  font-size: 24px;
}
.cartpage-list-item-quantity-button {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid gray;
  text-align: center;
  line-height: 20px;
  margin: 0 5px;
  cursor: pointer;
  user-select: none;
  background-color: #ddd;
}
.cartpage-list-item-quantity-button-disabled {
  opacity: 0.5;
}
.cartpage-list-item-quantity-button:hover {
  background-color: #ccc;
}
.cartpage-list-item-quantity-button-symbol {
  position: relative;
  top: -2px;
}
.cartpage-list-total {
  margin-top: 20px;
  text-align: right;
}
.checkout {
  min-width: 800px;
}
.order-summary-grid {
  display: grid;
  grid-template-columns: 80px 1fr 100px 100px;
  align-items: center;
  gap: 12px;
}
.order-summary-grid > span,
.order-summary-grid > div {
  text-align: left;
}
.order-summary-grid > span:nth-child(3),
.order-summary-grid > span:nth-child(4),
.order-summary-grid > div:nth-child(3),
.order-summary-grid > div:nth-child(4) {
  text-align: right;
}

/* src/pages/notifications/notifications-page.css */
.cartpage-table {
}
.cartpage-table td,
.cartpage-table th {
  text-align: left;
  padding: 5px 15px;
  padding-left: 0;
}
.cartpage-table td {
}

/* src/pages/audits/Audits.css */
.audits {
}
.audits-title {
  font-size: 24px;
  font-weight: bold;
}
.audits-generatedlist {
}
.audits-generatedlist-table {
}
.audits-generatedlist-table th,
.audits-generatedlist-table td {
  padding: 5px 0;
  padding-right: 20px;
}
.audits-generatedlist-table th {
  font-weight: bold;
  text-align: left;
}
.audits-generatedlist-table td {
}

/* src/pages/community-admin/community-admin.css */
.communityadmin {
}
.communityadmin-nav {
}
.communityadmin-nav-item {
}
.communityadmin-main {
}
.communityadmin-dashboard,
.communityadmin-queue,
.communityadmin-quarantine {
  margin: 20px;
}
.communityadmin-dashboard {
}
.communityadmin-dashboard-metric-tasks {
  text-align: center;
}
.communityadmin-dashboard-metric-tasks-value {
  font-size: 48px;
  margin-bottom: 15px;
}
.communityadmin-dashboard-metric-tasks-label {
  font-size: 24px;
  font-weight: bold;
}
.communityadmin-queue {
}
.communityadmin-queue-tasklist {
}
.communityadmin-queue-tasklist-table {
}
.communityadmin-queue-tasklist-table th,
.communityadmin-queue-tasklist-table td {
  text-align: left;
  padding: 5px 20px;
}
.communityadmin-queue-tasklist-table-row:hover {
  background-color: var(--color-hover-pastel-blue);
  cursor: pointer;
}
.communityadmin-queue-tasklist-table-row {
}
.communityadmin-queue-tasklist-table-row-itemlink {
  font-weight: bold;
}
.communityadmin-queue-tasklist-taskmodal {
}
.communityadmin-queue-tasklist-taskmodal-label {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.communityadmin-queue-tasklist-taskmodal-value {
  margin-bottom: 20px;
}
.communityadmin-queue-tasklist-taskmodal-value-link {
  font-weight: bold;
  text-decoration: none;
}
.communityadmin-queue-tasklist-taskmodal-value-link:hover {
  text-decoration: underline;
}
.communityadmin-quarantine {
}
.communityadmin-quarantine-quarantinedlist {
}
.communityadmin-quarantine-quarantinedlist-table {
}
.communityadmin-quarantine-quarantinedlist-table th,
.communityadmin-quarantine-quarantinedlist-table td {
  text-align: left;
  padding: 5px 20px;
}
.communityadmin-quarantine-quarantinedlist-table th {
}
.communityadmin-quarantine-quarantinedlist-table td {
}

/* src/pages/messages/Messages.css */
.messages {
}
.messages-threads {
  border-right: 1px solid gray;
  width: 300px;
  overflow-y: auto;
}
.messages-threads-head {
  padding: 25px;
  padding-left: 20px;
}
.messages-threads-head-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 5px;
}
.messages-threads-list {
  overflow-y: auto;
}
.messages-threads-list-thread {
  align-items: center;
  padding-left: 10px;
  --background-color: var(--color-site-background);
  cursor: pointer;
  color: var(--color-primary);
  text-decoration: none;
}
.messages-threads-list-thread:hover,
.messages-threads-list-thread-selected {
  --background-color: var(--color-panel-2-background-hover);
  background-color: var(--color-panel-2-background-hover);
}
.messages-threads-list-thread:hover {
  text-decoration: none;
}
.messages-threads-list-thread-selected {
}
.messages-threads-list-thread-unread {
}
.messages-threads-list-thread-unreaddot {
  --messages-threads-list-thread-unreaddot-size: 16px;
  background-color: rgb(55, 67, 198);
  color: white;
  font-size: 18px;
  width: var(--messages-threads-list-thread-unreaddot-size);
  height: var(--messages-threads-list-thread-unreaddot-size);
  line-height: var(--messages-threads-list-thread-unreaddot-size);
  border-radius: var(--messages-threads-list-thread-unreaddot-size);
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
  margin-left: 8px;
  margin-right: 8px;
}
.messages-threads-list-thread-iconholder {
  width: 50px;
  height: 50px;
  position: relative;
}
.messages-threads-list-thread-iconholder-single,
.messages-threads-list-thread-iconholder-multiple {
  border-radius: 100px;
  border: 3px solid var(--background-color);
  background-position: center;
  background-size: cover;
}
.messages-threads-list-thread-iconholder-single {
  width: 50px;
  height: 50px;
}
.messages-threads-list-thread-iconholder-multiple {
  width: 40px;
  height: 40px;
}
.messages-threads-list-thread-iconholder-multiple-b {
  position: absolute;
  right: 0;
  top: 0;
}
.messages-threads-list-thread-iconholder-multiple-a {
  position: absolute;
  left: 0;
  bottom: 0;
}
.messages-threads-list-thread-info {
  padding: 15px;
  padding-left: 20px;
  overflow: hidden;
  min-height: 85px;
}
.messages-threads-list-thread-info-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
.messages-threads-list-thread-unread .messages-threads-list-thread-info-title {
  font-weight: bold;
}
.messages-threads-list-thread-info-time {
  float: right;
  color: #555;
  font-weight: normal;
  font-size: 12px;
}
.messages-threads-list-thread-info-excerpt-holder {
  position: relative;
  min-width: 0;
}
.messages-threads-list-thread-info-excerpt {
  color: #ccc;
  font-size: 14px;
  margin-top: 5px;
  opacity: 0.8;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.messages-threads-list-thread-unread .messages-threads-list-thread-info-excerpt {
  color: var(--color-primary);
  opacity: 1;
  font-weight: bold;
}
.messages-thread-container {
}
.messages-thread-container-empty {
  width: 100%;
  padding: 30px;
  text-align: center;
  top: 40%;
}
.messages-thread {
  border: 1px solid blue;
}
.messages-thread-head {
  border-bottom: 1px solid gray;
}
.messages-thread-head-tnew {
  padding: 20px;
}
.messages-thread-head-tview {
  box-shadow: 0px 2px 4px 0px rgba(170, 170, 170, 1);
  height: 70px;
}
.messages-thread-head-tnew-tolabel {
  display: inline-block;
  margin-right: 5px;
}
.messages-thread-head-tnew-recipient {
  background-color: rgb(193 214 255);
  padding: 5px 10px;
  border-radius: 5px;
  margin: 2px;
  padding-right: 0;
  color: black;
}
.messages-thread-head-tnew-recipient-close {
  padding: 0 10px;
  padding-left: 8px;
  color: #666;
  cursor: pointer;
}
.messages-thread-head-tnew-recipient-close:hover {
  color: black;
}
.messages-thread-head-tnew-input-container {
  display: inline-block;
  position: relative;
  margin-left: 5px;
}
.messages-thread-head-tnew-input {
  outline: none;
  border: none;
  width: 200px;
  background-color: var(--color-site-background);
  color: var(--color-primary);
}
.messages-thread-head-tnew-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  padding: 5px 0;
  border: 1px solid gray;
  border-radius: 5px;
  z-index: 999;
  background-color: var(--color-panel-1-background);
  width: 500px;
}
.messages-thread-head-tnew-dropdown-item {
  padding: 10px 20px;
}
.messages-thread-head-tnew-dropdown-item-hover,
.messages-thread-head-tnew-dropdown-item:hover {
  background-color: #ccc;
  cursor: pointer;
}
.messages-thread-head-tnew-dropdown-item-nameinfo-icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.messages-thread-head-tnew-dropdown-item-nameinfo {
  margin-left: 20px;
}
.messages-thread-head-tnew-dropdown-item-nameinfo-name {
  margin-right: 10px;
}
.messages-thread-head-tnew-dropdown-item-nameinfo-supplemental {
  font-size: 14px;
  font-style: italic;
  color: #666;
}
.messages-thread-head-tview-recipient {
  border: 1px solid gray;
  display: inline-block;
}
.messages-thread-head-tview-icon-area {
  height: 100%;
  width: 60px;
  padding-left: 20px;
}
.messages-thread-head-tview-icon-holder {
  width: 40px;
  height: 40px;
  position: relative;
  --background-color: var(--color-site-background);
}
.messages-thread-head-tview-icon {
  border: 1px solid gray;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid var(--background-color);
}
.messages-thread-head-tview-icon-subicon {
  width: 70%;
  height: 70%;
  border-radius: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.messages-thread-head-tview-icon-subicon-b {
  left: unset;
  bottom: unset;
  right: 0;
  top: 0;
}
.messages-thread-head-tview-title {
  padding-left: 15px;
}
.messages-thread-head-tview-title-text {
  font-weight: bold;
  font-size: 22px;
}
.messages-thread-head-tview-title-text-name {
  color: var(--color-primary);
}
.messages-thread-messages {
  padding: 15px;
}
.messages-thread-messages-recipintro {
  text-align: center;
}
.messages-thread-messages-recipintro-user {
  display: inline-block;
  text-align: center;
  margin: 15px;
}
.messages-thread-messages-recipintro-user-icon {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
}
.messages-thread-messages-recipintro-user-name {
  font-size: 22px;
  font-weight: bold;
  margin: 5px;
}
.messages-thread-messages-datesep {
  text-align: center;
  position: relative;
  opacity: 0.5;
  font-size: 12px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.messages-thread-messages-datesep-rule {
  width: 30%;
  border-bottom: 1px solid gray;
  position: absolute;
  left: 5%;
  top: 50%;
}
.messages-thread-messages-datesep-rule-b {
  left: unset;
  right: 5%;
}
.messages-thread-messages-message-outer {
}
.messages-thread-messages-message {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 5px;
  padding-bottom: 20px;
}
.messages-thread-messages-message:hover {
  background-color: var(--color-panel-1-background-hover);
}
.messages-thread-messages-message-me {
}
.messages-thread-messages-message-them {
}
.messages-thread-messages-message-body {
  padding-left: 10px;
}
.messages-thread-messages-message-usericon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.messages-thread-messages-message-userinfo {
  margin-bottom: 10px;
}
.messages-thread-messages-message-userinfo-name {
  font-weight: bold;
  color: var(--color-primary);
}
.messages-thread-messages-message-userinfo-sep {
  padding: 0 5px;
}
.messages-thread-messages-message-userinfo-time {
  color: gray;
}
.messages-thread-messages-message-content {
}
.messages-thread-newmessage {
  border-top: 1px solid gray;
}
.messages-thread-newmessage-textarea-container {
  padding: 15px;
}
.messages-thread-newmessage-textarea {
  border: 1px solid gray;
  border-radius: 10px;
  height: 80px;
  padding: 15px;
}
.messages-thread-newmessage-endcontrols {
  padding: 15px;
  padding-left: 0;
  align-self: flex-end;
}

/* src/pages/checkout-new/cart.css */
.cartpage {
  min-width: 800px;
}
.cartpage-list {
}
.cartpage-list-item-sep {
  border-bottom: 2px solid #ccc;
}
.cartpage-list-item {
  padding: 15px 0;
  display: flex;
}
.cartpage-list-item-image {
}
.cartpage-list-item-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 10px;
  display: block;
}
.cartpage-list-item-body {
  flex-grow: 1;
  margin-left: 20px;
}
.cartpage-list-item-quantity {
  margin-top: 20px;
}
.cartpage-list-item-quantity-label {
  font-weight: bold;
  display: inline;
}
.cartpage-list-item-quantity-value {
  font-size: 24px;
}
.cartpage-list-item-quantity-button {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid gray;
  text-align: center;
  line-height: 20px;
  margin: 0 5px;
  cursor: pointer;
  user-select: none;
  background-color: #ddd;
}
.cartpage-list-item-quantity-button-disabled {
  opacity: 0.5;
}
.cartpage-list-item-quantity-button:hover {
  background-color: #ccc;
}
.cartpage-list-item-quantity-button-symbol {
  position: relative;
  top: -2px;
}
.cartpage-list-total {
  margin-top: 20px;
  text-align: right;
}
.checkout {
  min-width: 800px;
}
.order-summary-container {
  background:
    linear-gradient(
      180deg,
      #2c3e50,
      #1c2833);
  margin: 0 1rem;
  border-radius: 12px;
  padding: 20px;
  width: auto;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
}
.order-summary-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e0e0e0;
}
.order-summary-divider {
  border: none;
  border-top: 1px solid #555;
  margin: 12px 0;
}
.order-summary-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
}
.order-summary-label {
  color: #cccccc;
}
.order-summary-value {
  color: #ffffff;
  font-weight: 500;
}
.order-summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 8px;
}
.order-summary-button {
  margin-top: 16px;
  width: 100%;
  background: #000000;
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.order-summary-button:hover {
  background: #222222;
}
.order-summary-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 12px;
  padding-top: 12px;
}
.order-summary-total-label {
  color: #ffffff;
}
.order-summary-total-value {
  color: #ffffff;
}
.submit-payment-button {
  position: absolute;
  bottom: 20px;
  right: 55px;
}

/* src/pages/checkout-new/checkoutpage.css */
.payment-form-container {
  background:
    linear-gradient(
      180deg,
      #2c3e50,
      #1c2833);
  padding: 2rem 3rem 5rem 3rem;
  margin: 0 1rem;
  border-radius: 12px;
  width: auto;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
}
.order-summary-container {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.order-summary-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}
.order-summary-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 8px 0 12px 0;
}
.order-summary-header-row {
  display: grid;
  grid-template-columns: 80px 1fr 100px 100px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #faf8f8;
  margin-bottom: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
.order-summary-header-image,
.order-summary-header-details {
  text-align: left;
}
.order-summary-header-price,
.order-summary-header-total {
  text-align: right;
}
.checkoutpage-list-item {
  display: grid;
  grid-template-columns: 80px 1fr 100px 100px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.checkoutpage-list-item:last-child {
  border-bottom: none;
}
.checkoutpage-list-item-image {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.checkoutpage-list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkoutpage-list-item-quantity-bottomright {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background-color: #444;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
}
.checkoutpage-list-item-body {
  display: flex;
  flex-direction: column;
}
.checkoutpage-list-item-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 4px;
}
.checkoutpage-list-item-quantity {
  font-size: 12px;
  color: #b4b4b4;
}
.checkoutpage-list-item-price {
  font-size: 14px;
  color: #bfbdbd;
  text-align: right;
}
.checkoutpage-list-item-total {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-align: right;
}
.order-summary-total-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  padding-top: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #bebebe;
}
.order-summary-total-label {
  margin-right: 16px;
}
.checkoutpage-list-item-quantity {
  display: flex;
}

/* src/components/UploadStatusBar.css */
.upload-status-bar {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: max(320px, 33.33vw);
  height: max(120px, 25vh);
  background: var(--color-panel-1-background);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(100%);
  animation: slideUpFromBottom 0.3s ease-out forwards;
}
.upload-status-bar-collapsed {
  height: 60px;
}
.upload-status-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--color-panel-2-background);
  border-bottom: 1px solid var(--color-primary);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.upload-status-bar-header:hover {
  background: var(--color-panel-2-background-hover);
}
.upload-status-bar-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}
.upload-status-bar-icon {
  margin-right: 8px;
  font-size: 16px;
}
.upload-status-bar-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}
.upload-status-bar-clear,
.upload-status-bar-toggle {
  background: var(--color-panel-1-background);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.2s ease;
}
.upload-status-bar-clear:hover,
.upload-status-bar-toggle:hover {
  background: var(--color-panel-1-background-hover);
}
.upload-status-bar-content {
  padding: 10px 20px;
  height: calc(100% - 60px);
  overflow-y: auto;
}
.upload-item {
  background: var(--color-panel-2-background);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  border: 1px solid var(--color-primary);
}
.upload-item:hover {
  background: var(--color-panel-2-background-hover);
}
.upload-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  user-select: none;
}
.upload-item-info {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.upload-item-icon {
  margin-right: 8px;
  font-size: 14px;
}
.upload-item-name {
  font-weight: 500;
  margin-right: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.upload-item-size {
  font-size: 12px;
  opacity: 0.8;
  margin-right: 12px;
  white-space: nowrap;
}
.upload-item-status {
  font-size: 12px;
  opacity: 0.9;
  margin-right: 12px;
  white-space: nowrap;
  font-style: italic;
}
.upload-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.upload-item-time {
  font-size: 12px;
  opacity: 0.8;
}
.upload-item-cancel {
  background: var(--color-panel-1-background);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background-color 0.2s ease;
}
.upload-item-cancel:hover {
  background: var(--color-panel-1-background-hover);
}
.upload-item-expand {
  font-size: 10px;
  opacity: 0.7;
  cursor: pointer;
}
.upload-item-progress {
  display: flex;
  align-items: center;
  padding: 0 12px 10px 12px;
  gap: 10px;
}
.upload-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--color-panel-1-background);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--color-primary);
}
.upload-progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.upload-progress-text {
  font-size: 12px;
  font-weight: 500;
  min-width: 35px;
  text-align: right;
}
.upload-item-details {
  padding: 10px 12px;
  background: var(--color-panel-1-background);
  border-top: 1px solid var(--color-primary);
}
.upload-detail-row {
  display: flex;
  margin-bottom: 4px;
  font-size: 12px;
}
.upload-detail-row:last-child {
  margin-bottom: 0;
}
.upload-detail-label {
  font-weight: 500;
  min-width: 50px;
  margin-right: 8px;
  opacity: 0.8;
}
.upload-detail-value {
  flex: 1;
  word-break: break-all;
}
.upload-error {
  color: var(--color-accent);
  font-style: italic;
}
.upload-status-pending {
  border-left: 3px solid var(--color-accent);
}
.upload-status-uploading {
  border-left: 3px solid var(--color-primary);
}
.upload-status-processing {
  border-left: 3px solid var(--color-accent);
}
.upload-status-completed {
  border-left: 3px solid var(--color-primary);
}
.upload-status-error {
  border-left: 3px solid var(--color-accent);
}
.upload-status-cancelled {
  border-left: 3px solid var(--color-primary);
}
.upload-status-bar-content::-webkit-scrollbar {
  width: 6px;
}
.upload-status-bar-content::-webkit-scrollbar-track {
  background: var(--color-panel-1-background);
  border-radius: 3px;
}
.upload-status-bar-content::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}
.upload-status-bar-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUpFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.upload-item {
  animation: slideInUp 0.3s ease-out;
}
@media (max-width: 768px) {
  .upload-status-bar {
    width: max(320px, 90vw);
    right: 15px;
    bottom: 15px;
  }
  .upload-status-bar-header {
    padding: 10px 15px;
  }
  .upload-status-bar-content {
    padding: 8px 15px;
  }
  .upload-item-header {
    padding: 8px 10px;
  }
  .upload-item-name {
    font-size: 13px;
  }
  .upload-item-size {
    font-size: 11px;
  }
}

/* src/pages/plans/plans.css */
.contentpage-plans {
  width: 1000px;
}
.contentpage-plans-planslist {
}
.contentpage-plans-planslist-plan {
  border: 1px solid white;
  border-radius: var(--panel-corner-radius);
  width: calc(33.2% - 20px);
  margin: 10px;
  text-align: center;
  vertical-align: top;
  padding: 20px;
  background-color: var(--color-panel-1-background);
}
.contentpage-plans-userinfo {
  text-align: center;
}

/* src/pages/orders/orders.css */
.orders {
}
.orders-page {
  width: 600px;
}
.orders-order {
  border: 2px solid white;
  border-radius: var(--panel-corner-radius);
  margin-bottom: 40px;
  padding: 20px;
  width: 100%;
  background-color: var(--color-panel-1-background);
  padding-bottom: 40px;
}
.orders-order-date {
  float: right;
}
.orders-orderitems {
  padding-left: 20px;
}
.orders-orderitems-table {
  width: 100%;
}
.orders-orderitem-row {
}
.orders-orderitem-premium {
}
.orders-orderitem-icon-td {
  width: 40px;
}
.orders-orderitem-premium-td {
  width: 150px;
}
.orders-orderitem-premium-linkbutton {
  cursor: pointer;
}
.orders-orderitem-premium-linkbutton:hover {
}
.orders-orderitem-premium-linkbutton-chevron {
  font-size: 60%;
  display: inline-block;
  vertical-align: middle;
}
.orders-orderitem-premium-linkbutton-text {
}
.orders-orderitem-premium-linkbutton:hover .orders-orderitem-premium-linkbutton-text {
  text-decoration: underline;
}
.orders-orderitem-premium td {
}
.orders-orderitem-premium-listing {
  padding: 20px;
  padding-bottom: 30px;
  background-color: var(--color-panel-2-background);
  border: 1px solid white;
  border-radius: var(--panel-corner-radius);
  margin: 20px;
}
.orders-orderitem-premium-listing-td {
}
.orders-orderitem-premium-listing-title {
  margin-bottom: 10px;
  font-style: italic;
}
.orders-orderitem-premium-listing-table {
}
.orders-orderitem-premium-listing-filerow {
}
.orders-orderitem-premium-listing-filerow-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.orders-orderitem td {
  padding-bottom: 20px;
}
.orders-orderitem-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: block;
  border: 1px solid transparent;
  border-radius: 4px;
}
.orders-orderitem-icon:hover {
  border-color: white;
}
.orders-orderitem-itemlink {
  color: white;
  font-weight: bold;
}

/* src/common/page-form/page-form.css */
.pageform {
  text-align: center;
  width: 400px;
  margin: 0 auto;
}
.pageform-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.pageform-errors,
.pageform-field-errors {
  font-weight: bold;
}
.pageform-errors {
  margin: 10px;
  padding: 15px 30px;
  margin: 20px 0;
  border-radius: 10px;
  color: rgb(200, 0, 0);
}
.pageform-errors ul {
  text-align: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.pageform-errors li {
}
.pageform-field-errors {
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(200, 0, 0);
}
.pageform-field-errors ul {
  text-align: left;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.pageform-field-errors li {
}
.pageform table {
  width: 100%;
}
.pageform-field {
  margin: 5px;
  text-align: left;
  margin-bottom: 20px;
}
.pageform-field-required {
  color: darkred;
}
.pageform label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  display: inline-block;
  margin-left: 15px;
}
.pageform-label-clickable {
  cursor: pointer;
}
.pageform input[type=text],
.pageform input[type=number],
.pageform input[type=password],
.pageform textarea {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid black;
  margin: 2px;
}
.pageform-field-passwordinput-container {
  position: relative;
}
.pageform-field-passwordinput-eyeicon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--color-site-background);
}
.pageform-field input[type=checkbox] {
  vertical-align: middle;
}
.pageform textarea {
  height: 80px;
}
.pageform-submit {
  display: inline-block;
  margin: 7px;
  padding: 15px 20px;
  font-size: 16px;
  border: none;
  background-color: var(--color-accent);
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  color: black;
}
.pageform-submit:hover {
  background-color: var(--color-accent-hover);
  text-shadow: 0px 0px 1px black;
}
.pageform-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pageform-cancel {
  display: inline-block;
  margin: 7px;
  padding: 15px 20px;
  font-size: 16px;
  border: none;
  background-color: #bd4f4f;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}
.pageform-cancel:hover {
  background-color: #a94442;
  text-shadow: 0px 0px 1px white;
}
.pageform-steps-parenttitle {
  font-size: 20px;
}
.pageform-steps {
  margin-bottom: 50px;
}
.pageform-steps-sep {
  display: inline-block;
  width: 100px;
  border-top: 1px solid var(--color-accent);
  vertical-align: middle;
}
.pageform-steps-backbutton {
  display: inline-block;
  margin-right: 20px;
  text-decoration: none;
}
.pageform-steps-backbutton:hover {
  text-decoration: underline;
}
.pageform-steps-step {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: bold;
  border-radius: 20px;
  line-height: 26px;
  vertical-align: middle;
  position: relative;
  text-align: center;
}
.pageform-steps-step-current {
  background-color: var(--color-accent);
  color: black;
}
.pageform-steps-step-completed {
  background-color: var(--color-accent);
  color: black;
}
.pageform-steps-step-name {
  line-height: initial;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 12px;
  padding-top: 10px;
  color: var(--color-primary);
}

/* src/app/App.css */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
* {
  margin: 0;
  padding: 0;
}
html,
body,
#root {
  min-height: 100%;
  height: 100%;
}
body {
  --color-dark-red: darkred;
  --color-dark-red-hover: rgb(200, 32, 32);
  --color-primary-blue: darkblue;
  --color-primary-blue-hover: rgb(49, 49, 194);
  --color-gradient:
    linear-gradient(
      to bottom right,
      #0e2543,
      #3b3b53);
  --color-hover-pastel-blue: rgb(155, 169, 215);
  --color-black-tranparent-background:rgba(0,0,0,0.4);
  --color-black-transparent-background-v2:rgba(0,0,0,0.7);
  --color-site-background: #161621;
  --color-panel-1-background: #3c496c;
  --color-panel-1-background-hover: #4a5983;
  --color-panel-2-background: #2f2f3f;
  --color-panel-2-background-hover: #3b3b4f;
  --color-primary: white;
  --color-accent: #f0ff00;
  --color-accent-hover: #f6ff7d;
  --nav-height: 80px;
  --non-scrolling-page-height: calc(100% - var(--nav-height));
  --panel-corner-radius: 20px;
  background-color: var(--color-site-background);
  color: var(--color-primary);
  font-family: avenir-lt-pro, sans-serif;
  --font-weight-heavy: 700;
  --font-weight-black: 800;
  --form-text-input-background-color: white;
}
a {
  color: var(--color-accent);
  text-decoration: none;
}
a:visited {
}
a:hover {
  text-decoration: underline;
}
table {
  border-collapse: collapse;
}
a.black-link {
  color: var(--color-primary);
}
.app {
}
.app-content {
}
.app-content-scroll {
  min-height: 900px;
}
.app-content-fixed {
  border-top: 1px solid gray;
}
.nav {
  position: relative;
  height: 80px;
  background-color: var(--color-site-background);
  z-index: 999;
  font-size: 20px;
}
.nav-home {
  display: inline-block;
  font-size: 36px;
  color: var(--color-primary);
  font-weight: bold;
  padding-top: 20px;
  padding-left: 15px;
  cursor: pointer;
  text-decoration: none;
}
.nav-home-img {
  width: 40px;
}
.nav-left {
  float: left;
}
.nav-left-list {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
.nav-left-list li {
  display: inline-block;
}
.nav-left-list li > a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
  padding: 20px 0;
  display: inline-block;
}
.nav-left-list li > a:hover {
  color: var(--color-accent);
}
.nav-nav-left-list-link {
}
.nav-left-list-link-text {
  padding: 0 15px;
}
.nav-left-list li .nav-left-list-link-text {
  border-left: 3px solid white;
}
.nav-left-list li:first-child .nav-left-list-link-text {
  border-left-color: transparent;
}
ul.nav-menu {
  list-style-type: none;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
  padding-top: 30px;
  padding-right: 40px;
}
ul.nav-menu > li {
  display: inline-block;
}
ul.nav-menu > li > a.nav-menu-l1 {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}
ul.nav-menu a.nav-menu-l1:hover {
  color: var(--color-accent);
}
.nav-menu-l1 {
  display: inline-block;
  padding: 20px 25px;
}
.nav-menu-l1-ico {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  height: 28px;
}
.nav-menu-l1-ico-icon {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  height: 28px;
}
.nav-menu-l1-ico:hover .nav-menu-l1-ico-icon {
  font-weight: bold;
  color: var(--color-accent);
}
.nav-menu-l1-icon {
  width: 40px;
  height: 40px;
  position: relative;
  top: 10px;
  display: inline-block;
  cursor: pointer;
  margin: 0 5px;
  background-position: center;
}
.nav-menu-l1-icon-notif {
  float: right;
  background-color: var(--color-primary);
  width: 20px;
  height: 20px;
  border-radius: 20px;
  line-height: 20px;
  color: var(--color-site-background);
  text-align: center;
  font-size: 14px;
  position: absolute;
  right: 2px;
  top: -7px;
  z-index: 99;
  font-weight: 800;
}
.nav-menu-l1-icon-notif-2 {
  top: -17px;
}
.nav-menu-l1-ico:hover .nav-menu-l1-icon-notif {
}
.nav-menu-login {
  display: inline-block;
  padding: 20px 25px;
  color: var(--color-primary);
  font-weight: bold;
  text-decoration: none;
}
.nav-menu-login:hover {
  color: var(--color-accent);
  text-decoration: none;
}
.nav-menu-login-avatar {
  border-radius: 30px;
}
.nav-menu-login-avatar:hover {
}
.nav-menu-login-avatar:hover .nav-menu-usermenu-hoverarea {
  display: block;
}
.nav-menu-cart {
  background-image: url("/assets/resources/cart-3BFXTNX6.svg");
}
.nav-menu-cart:hover {
  background-image: url("/assets/resources/cart-hover-3AM6IXX7.svg");
}
.nav-menu-notifbell-nlist {
  width: 400px;
  background-color: var(--color-panel-1-background);
  border: 2px solid gray;
  position: absolute;
  right: -10px;
  top: 40px;
  border-radius: 10px;
  padding-bottom: 20px;
  height: calc(100vh - 150px);
  overflow: auto;
  z-index: 999;
}
.nav-menu-notifbell-nlist-title {
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  height: 60px;
}
.nav-menu-notifbell-nlist-empty {
  padding: 20px;
}
.nav-menu-notifbell-nlist-list {
  padding: 0;
  list-style-type: none;
}
.nav-menu-notifbell-nlist-item {
  display: flex;
  cursor: pointer;
  color: var(--color-primary);
  text-decoration: none;
}
.nav-menu-notifbell-nlist-item:hover {
  background-color: var(--color-panel-1-background-hover);
  color: var(--color-primary);
  text-decoration: none;
}
.nav-menu-notifbell-nlist-item-avatar {
  width: 40px;
  height: 40px;
  margin: 15px 20px;
  border-radius: 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 20px;
}
.nav-menu-notifbell-nlist-item-body {
  margin-top: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.nav-menu-notifbell-nlist-item-description {
  margin-bottom: 10px;
  font-size: 16px;
}
.nav-menu-notifbell-nlist-item-time {
  font-size: 12px;
}
.nav-menu-usermenu-hoverarea {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% - 20px);
  width: 200px;
  z-index: 9999999;
  padding-top: 30px;
}
.nav-menu-usermenu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  border: 1px solid #ccc;
  background-color: var(--color-site-background);
  border-radius: 10px;
  padding: 10px 0;
}
.nav-menu-usermenu > li {
}
.nav-menu-usermenu > li > a {
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  color: unset;
}
.nav-menu-usermenu > li > a:hover {
  background-color: #ccc;
  color: var(--color-site-background);
  font-weight: bolder;
  text-shadow: 0px 0px 1px var(--color-primary);
}
.landing {
}
.landing-banner {
  background: url("/assets/resources/home-main-TGKEVG2A.jpg");
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: var(--panel-corner-radius);
  border: 2px solid white;
  margin-top: 40px;
}
.landing-banner-title {
  position: absolute;
  padding: 30px 40px;
  padding-left: 60px;
  top: 40px;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.25;
}
.landing-banner-title-title {
  font-weight: bolder;
}
.landing-banner-title-subtitle {
  color: var(--color-accent);
  font-weight: lighter;
}
.landing-introtext {
  font-size: 20px;
  margin: 60px;
  line-height: 1.15;
  text-align: center;
}
.landing-descriptpanel {
  border-radius: var(--panel-corner-radius);
  background-color: var(--color-panel-1-background);
  padding: 30px;
  margin-bottom: 60px;
}
.landing-descriptpanel-title {
  font-size: 20px;
  font-weight: bolder;
  margin-top: 0;
  margin-left: 60px;
}
.landing-descriptpanel-banner {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: var(--panel-corner-radius);
  margin-bottom: 30px;
}
.landing-descriptpanel-description {
  border-radius: var(--panel-corner-radius);
  border: 1px solid var(--color-primary);
  background-color: var(--color-panel-2-background);
  padding: 30px;
}
.landing-banner-browse {
  display: block;
  font-size: 18px;
  background-color: var(--color-dark-red);
  color: white;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  cursor: pointer;
}
.landing-banner-browse:hover {
  background-color: var(--color-dark-red-hover);
}
.landing-content {
  margin: 0 100px;
}
.landing-content p {
  font-size: 18px;
  line-height: 1.5;
}
.landing-content-img {
  width: 400px;
  margin: 50px;
}
.landing-content-img-left {
  float: left;
  margin-left: 0;
}
.landing-content-img-right {
  float: right;
  margin-right: 0;
}
.landing-content-img-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 800px;
}
.landing-panel {
  border: 2px solid white;
  border-radius: var(--panel-corner-radius);
  padding: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: var(--color-panel-2-background);
}
.landing-panel h1 {
}
.landing-faq-section {
}
.landing-faq-section h1 {
  font-size: 18px;
  font-weight: var(--font-weight-black);
}
.landing-faq-section li {
  margin-bottom: 40px;
}
.contentpage {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 80px;
}
.registerbox {
  text-align: left;
}
a.loginpage-registerlink {
  color: var(--color-primary);
  text-decoration: none;
  margin: 20px;
}
a.loginpage-registerlink:visited {
}
a.loginpage-registerlink:hover {
  text-decoration: underline;
}
body {
  --safe-padding-bottom: 0;
}
.uwy.userway_p1 .userway_buttons_wrapper {
  top: auto !important;
  bottom: var(--safe-padding-bottom) !important;
}

/* src/pages/listings-new/ListingN.css */
.listingN {
  min-height: 100vh;
}
.listingN-container {
  margin-left: 10%;
  margin-right: 10%;
}
.listingN-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  width: 100%;
  justify-items: stretch;
  box-sizing: border-box;
  padding: 2rem 2rem 0 2rem;
}
.listingN-grid > * {
  min-width: 0;
}
.listingN-left {
  grid-column: 1 / 2;
}
.listingN-right {
  grid-column: 2 / 3;
}
.listingN-full {
  grid-column: 1 / -1;
}
.listingN-grid .flex-end {
  justify-content: flex-end;
}
.listing-edit-fileattachments {
  border: 2px solid #ffffff66;
  margin-bottom: 40px;
  background-color: var(--color-black-transparent-background-v2);
  border-radius: var(--panel-corner-radius);
  padding: 20px;
}
.listing-create-mediafiles-file {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-sizing: border-box;
}
.listing-create-mediafiles-file-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  flex-shrink: 0;
}
.listing-create-mediafiles-file-info {
  flex: 1;
  width: auto;
}
.listing-create-mediafiles-file:hover {
  border: 1px solid lightgray;
  background-color: var(--color-panel-2-background);
}
.listing-create-mediafiles-file:hover .listing-create-mediafiles-file-closeicon-hitarea {
  display: block;
}
.listing-create-mediafiles-file-closeicon-hitarea {
  display: none;
  float: right;
  cursor: pointer;
  padding: 5px;
}
.listing-create-mediafiles-file-closeicon {
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  color: white;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
}
.listing-create-mediafiles-file-closeicon-hitarea:hover .listing-create-mediafiles-file-closeicon {
  background-color: white;
  border-color: white;
  color: black;
}

/* src/pages/listings-new/components/Components.css */
.product-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  width: 100%;
  height: 25rem;
  border-radius: 1rem;
  background:
    linear-gradient(
      to bottom right,
      #0E2543,
      #3B3B53);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}
.product-info-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 0 0;
  text-transform: uppercase;
}
.product-info-section {
  margin-bottom: 1.25rem;
}
.product-info-label {
  color: #aab0c0;
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}
.product-info-text {
  color: #e9ecf2;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}
.actions-card {
  background: var(--color-gradient);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.reviews-card {
  background:
    linear-gradient(
      to right,
      #0e2543,
      #3b3b53);
  border-radius: 0.75rem;
  color: #fff;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.reviews-header {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.reviews-average {
  font-weight: 500;
  margin-left: 0.5rem;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-item {
  font-size: 0.95rem;
  line-height: 1.4;
}
.review-rating {
  font-weight: 600;
}
.review-user {
  color: #4aa3ff;
  font-weight: 500;
  text-decoration: none;
}
.review-user:hover {
  text-decoration: underline;
}
.reviews-more {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  margin-top: 1rem;
  padding: 0;
  text-transform: uppercase;
}
.reviews-more:hover {
  text-decoration: underline;
}

/* node_modules/swiper/swiper.css */
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image:
      linear-gradient(
        to left,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image:
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image:
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* node_modules/swiper/modules/grid.css */
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

/* node_modules/swiper/modules/navigation.css */
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

/* src/common/components/MediaGallery.css */
.media-gallery-container {
  width: 100%;
  background:
    linear-gradient(
      to bottom right,
      #0e2543,
      #3b3b53);
  color: white;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 0 2.5rem 0;
}
.media-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 2rem;
  padding: 1rem 0;
}
.media-gallery-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.media-gallery-edit {
  background-color: transparent;
  border: none;
  font-weight: 600;
  color: var(--color-primary-blue);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.media-gallery-edit:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--color-primary-blue-hover);
}
.media-gallery-swiper {
  padding: 0rem 2.5rem 0 2.5rem;
  position: relative;
}
.media-gallery-slide {
  height: 14rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #000;
  border: 2px solid white;
}
.media-gallery-slide img,
.media-gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}
.media-gallery-container .container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #111;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.media-gallery-container .container:hover {
  transform: scale(1.05);
}
.media-gallery-container .gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7),
      transparent);
}
.media-gallery-container .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.media-gallery-container .container:hover .icon {
  opacity: 1;
}
.media-gallery-container .name {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.custom-prev,
.custom-next {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  color: #fff;
  padding: 1.5rem;
  border-radius: 100%;
  cursor: pointer;
  z-index: 20;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-prev {
  left: 0.2rem;
}
.custom-next {
  right: 0.2rem;
}
.custom-prev:hover,
.custom-next:hover {
  background-color: rgba(0, 0, 0, 1);
}
.media-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.swiper-slide-visible {
  opacity: 1;
}
.no-media {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
  font-size: 1rem;
}

/* src/common/modal/MediaModal.css */
.media-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.media-modal-container {
  position: relative;
  width: 70vw;
  max-height: 75vh;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  color: white;
  display: flex;
  gap: 1rem;
}
.media-modal-container-video {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 1rem;
}
.media-modal-container-default {
  flex-direction: column;
}
.media-modal-close-button {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  border: 1px solid white;
  padding: 0.25rem 0.5rem;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}
.media-modal-close-button:hover {
  background: rgba(0, 0, 0, 0.9);
}
.media-modal-video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-modal-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.media-modal-details {
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.media-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.media-modal-description {
  color: #ccc;
}
.media-modal-detail-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.media-modal-image {
  max-width: 100%;
  max-height: calc(75vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5rem;
}
.media-modal-audio-container {
  width: 65vw;
  height: 20vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  justify-content: center;
  align-items: center;
}
.media-modal-audio {
  width: 90%;
  max-width: 30rem;
  height: 3rem;
}
.edit-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.media-modal-detail-item label {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  font-size: 0.95rem;
  min-width: 120px;
  flex-shrink: 0;
}

/* src/common/components/GenericHeroMediaViewer.css */
.reel-section-container {
  width: 100%;
  border-radius: 0.75rem;
}
.reel-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem 0.5rem 2rem;
}
.reel-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-underline-offset: 4px;
  text-decoration: underline;
}
.edit-button {
  background-color: transparent;
  border: none;
  font-weight: 600;
  padding: 2px;
  color: #007bff;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
  text-underline-offset: 4px;
}
.reel-video-wrapper {
  position: relative;
  width: 100%;
  height: 25rem;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.reel-play-button {
  position: absolute;
  color: white;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: none;
  cursor: pointer;
}
.reel-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reel-actions {
  display: flex;
  gap: 6px;
  font-size: 0.95rem;
  align-items: center;
}
.reel-action {
  background: none;
  border: none;
  padding: 0;
  color: #007bff;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, text-decoration 0.2s;
}
.reel-action:hover {
  text-decoration: underline;
  color: var(--color-accent);
}
.reel-action-separator {
  color: #aaa;
  font-size: 0.9rem;
}

/* src/pages/onboarding/onboarding.css */
.ob-page {
  min-height: 100vh;
  padding: 32px 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: var(--color-site-background);
  color: #e9edf5;
}
.ob-card {
  overflow-y: auto;
  width: 40vw;
  max-width: 820px;
  background: var(--color-panel-1-background);
  border: 1px solid #2a3246;
  border-radius: 12px;
  padding: 2rem 4rem 2rem 4rem;
}
.ob-card__title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
}
.ob-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ob-section__header {
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #cbd5e1;
}
.ob-section__body {
  padding: 12px;
  display: grid;
  gap: 10px;
}
.ob-grid {
  display: grid;
  gap: 10px;
}
.ob-grid--2 {
  grid-template-columns: 1fr 1fr;
}
.ob-label {
  display: block;
  margin: 0 0 6px 0;
  font-size: 11px;
  color: #cbd5e1;
}
.ob-input {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #d0d7e2;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.ob-input::placeholder {
  color: #8a96a8;
}
.ob-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .18);
}
.ob-input--area {
  min-height: 120px;
  resize: vertical;
}
.ob-select {
  appearance: auto;
}
.ob-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
  padding: 12px;
}

/* src/pages/profile-new/components/ProfileComponents.css */
.profile-gallery-container {
  width: 100%;
  max-width: 72rem;
  padding: 0 0 2rem 0;
  background: var(--color-gradient);
  color: white;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
}
.profile-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 2rem 0 2rem;
  padding: 1rem;
}
.profile-gallery-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.profile-gallery-edit {
  background-color: transparent;
  border: none;
  font-weight: 600;
  color: #007bff;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.profile-gallery-edit:hover {
  text-underline-offset: 4px;
  text-decoration: underline;
}
.ProfileGallery_editButton:hover {
  color: #0056b3;
}
.profile-gallery-swiper {
  padding: 0rem 2.5rem;
  position: relative;
}
.media-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.swiper-slide-visible {
  opacity: 1;
}
.profile-gallery-slide {
  height: 14rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #000;
  border: 2px solid white;
}
.profile-gallery-slide img,
.profile-gallery-slide video {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #111;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.container:hover {
  transform: scale(1.05);
}
.container:hover .icon {
  opacity: 1;
}
.container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7),
      transparent);
}
.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.name {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.custom-prev,
.custom-next {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  color: #fff;
  padding: 1.5rem;
  border-radius: 100%;
  cursor: pointer;
  z-index: 20;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-prev {
  left: 0.2rem;
}
.custom-next {
  right: 0.2rem;
}
.custom-prev:hover,
.custom-next:hover {
  background-color: rgba(0, 0, 0, 1);
}
.profile-stats-root {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 25rem;
  height: 100%;
  align-self: stretch;
  width: 100%;
  padding: 2rem 0 2rem 0;
  background: var(--color-gradient);
  color: #9CA3AF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  gap: 1rem;
  box-sizing: border-box;
  align-self: stretch;
  padding: 1.5rem;
}
.profile-stats-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  text-underline-offset: 4px;
  margin-bottom: 0.75rem;
  text-decoration: underline;
}
.profile-stats-edit-btn-container {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}
.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 14px;
  column-gap: 0.75rem;
  line-height: 1.5rem;
  color: #9CA3AF;
}
.profile-stats-sociallinks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.profile-stats-sociallinks-list-item-link {
  margin-left: 0.5rem;
  color: #9CA3AF;
  text-decoration: none;
  word-break: break-all;
}
.reel-section-container {
  width: 100%;
  border-radius: 0.75rem;
}
.reel-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem 0.5rem 2rem;
}
.reel-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-underline-offset: 4px;
  text-decoration: underline;
}
.edit-button {
  background-color: transparent;
  border: none;
  font-weight: 600;
  color: #007bff;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
  text-underline-offset: 4px;
}
.reel-video-wrapper {
  position: relative;
  width: 100%;
  height: 25rem;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.reel-play-button {
  position: absolute;
  color: white;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: none;
  cursor: pointer;
}
.reel-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.profile-header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  width: 100%;
  min-height: 25rem;
  border-radius: 1rem;
  background:
    linear-gradient(
      to bottom right,
      #0E2543,
      #3B3B53);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}
.profile-header__avatar-edit-button-container {
  position: absolute;
  bottom: 0;
  right: 0;
}
.profile-header__edit-button-container {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}
.profile-header__verify-container {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}
.profile-header__edit-button {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e7eb;
}
.profile-header__edit-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.profile-header__verify-button {
  background-color: #10b981;
  border: 1px solid #059669;
  color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.profile-header__verify-button:hover {
  background-color: #059669;
  border-color: #047857;
}
.profile-header__avatar-container {
  position: relative;
  width: 10rem;
  height: 10rem;
  margin-bottom: 1rem;
}
.profile-header__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.profile-header__avatar-edit-button-container {
  bottom: 0;
  right: 0;
}
.profile-header__name {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem 0 0.25rem 0;
}
.profile-header__services-offered {
  font-size: 1rem;
  color: #bbb;
  margin: 0;
}
.profile-header__meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.profile-header__location {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ccc;
}
.profile-header__location-icon {
  color: #bbb;
}
.profile-header__actions {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* src/pages/profile-new/modals/EditProfileGalleryModal.css */
.editgallery-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.editgallery-container {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 900px;
  width: 100%;
  color: white;
}
.editgallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.editgallery-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.editgallery-close {
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 1.25rem;
  cursor: pointer;
}
.editgallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.editgallery-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #111;
}
.editgallery-thumb {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  display: block;
}
.editgallery-delete {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: background 0.2s ease;
}
.editgallery-delete:hover {
  background: rgb(199, 29, 29);
}
.editgallery-unlink {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: background 0.2s ease;
}
.editgallery-unlink:hover {
  background: rgb(199, 29, 29);
}
.editgallery-upload {
  border: 2px dashed #666;
  border-radius: 0.5rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  cursor: pointer;
}
.editgallery-footer {
  margin-top: 1.5rem;
  text-align: right;
}
.editgallery-button {
  background: #444;
  margin-right: 10px;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  color: white;
  cursor: pointer;
}

/* src/pages/profile-new/ProfileN.css */
.profileN {
  min-height: 100vh;
}
.profileN-container {
  margin-left: 10%;
  margin-right: 10%;
  padding-bottom: 2rem;
}
.profileN-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  width: 100%;
  justify-items: stretch;
  box-sizing: border-box;
  padding: 2rem 2rem 0 2rem;
}
.profileN-grid > * {
  min-width: 0;
}
.profileN-left {
  grid-column: 1 / 2;
  gap: 2rem;
}
.profileN-right {
  grid-column: 2 / 3;
  gap: 2rem;
}
.profileN-full {
  grid-column: 1 / -1;
}
.profileN-grid .flex-end {
  justify-content: flex-end;
}

/* src/marketplace-new/marketplacen.css */
.marketplace-container {
  margin: 0 5%;
  margin-bottom: 2%;
  min-height: 100vh;
}
.trendings {
  padding: 0rem 2% 0 2%;
  position: relative;
  height: 125px;
}
.mySwiper {
  width: 100%;
  height: 100%;
  padding: 1rem 0;
}
.mySwiperListings {
  width: 100%;
  height: 100%;
  padding: 1rem 1rem;
}
.category-pill {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-image: url("/assets/resources/gtm-YRALEXJK.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: center;
  justify-content: space-around;
  align-items: center;
}
.category-pill::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 1rem;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 30%,
      rgba(0, 0, 0, 0) 50%);
}
.category-pill:hover::after {
  border: 2px solid rgb(255, 255, 255);
  cursor: pointer;
}
.search-container {
  flex: 0 0 25%;
  height: 600px;
  padding: 2% 2%;
  overflow: hidden;
}
.search-container-content {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to left,
      #283a5a,
      #717299);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 5%;
  gap: 12px;
  margin: 1rem 0 0 0;
}
.searchbar-select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border-radius: 1rem;
  border: 1px solid #008cff;
  background-color: #fff;
}
.results-container {
  flex: 1;
  overflow-y: auto;
  padding: 2% 2%;
}
.results-container-content {
  flex: 1;
  width: 100%;
  border-radius: 1rem;
}
.marketplacen-result-listing-img {
  position: relative;
  width: 100%;
  padding-top: 65%;
  border-radius: 1rem;
  background-position: center;
}
.marketplacen-result-listing-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 1rem;
  transition: border 0.3s ease;
}
.marketplacen-result-listing-img:hover::after {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 1rem;
}
.marketplacen-result-listing-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  width: 90%;
  margin: 10px;
  color: #ffffff;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.listing-slider-container {
  background:
    linear-gradient(
      to left,
      #4a5478,
      #0e2644);
  border-radius: 1rem;
  margin: 1rem 0 0 0;
  padding: 1rem 1.5rem 1rem 1.5rem;
  position: relative;
}
.results-group-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.8px;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px 0 0 0;
}
.see-more-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.see-more-button:hover {
  background: #80ea56;
  color: #0e2644;
}
.marketplacen-result {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgb(255, 255, 255, 0.1);
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.marketplacen-result:hover {
  transform: translateY(-4px);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.mode-toggle {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
}
.mode-toggle button {
  font-size: 0.85rem;
  width: 50%;
  font-weight: 500;
  padding: 0.4rem 1rem;
  background: transparent;
  color: #d2d6dc;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.mode-toggle button.active {
  background: #111;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
.mode-toggle button:not(.active):hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.filter-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
}
.filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}
.range-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.range-inputs span {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}
.range-input {
  width: 70px;
  min-width: 60px;
  padding: 6px 8px;
  font-size: 13px;
  border-radius: 0.5rem;
  border: 1px solid #008cff;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
}
.range-input:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}
.range-input::placeholder {
  color: #999;
  font-size: 12px;
}
.filter-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.apply-filters-btn {
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}
.clear-filters-btn {
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
}
.apply-filters-btn:hover {
  background: rgb(0, 0, 0);
  transform: translateY(-2px);
}
.clear-filters-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* src/pages/cart-new/components/components.css */
.cartpagen-list-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 24px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: #515C7A;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease;
}
.cartpagen-list-item-image {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #fff;
  background: #10141e;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.cartpagen-list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cartpagen-list-item-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}
.cartpagen-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}
.cartpagen-item-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.cartpagen-item-status {
  font-size: 13px;
  font-weight: 600;
  color: #80ea56;
}
.cartpagen-qty-value {
  font-size: 14px;
  color: white;
  font-weight: 600;
}
.cartpagen-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.cartpagen-list-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  max-width: 70%;
}
.cartpagen-list-item-title:hover {
  color: #80ea56;
}
.cartpagen-list-item-price {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.cartpagen-list-item-price span {
  opacity: 0.6;
  text-decoration: line-through;
  font-weight: 400;
}
.cartpagen-item-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.cartpagen-item-status {
  font-size: 13px;
  color: #7fe05d;
  font-weight: 700;
}
.cartpagen-item-icons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cartpagen-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.cartpagen-icon-chip i {
  font-size: 14px;
  opacity: 0.9;
}
.cartpagen-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 12px;
}
.cartpagen-actions {
  display: inline-flex;
  gap: 14px;
}
.cartpagen-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.cartpagen-action-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.cartpagen-action-btn:hover {
  border-color: #80ea56;
  background: rgba(128, 234, 86, 0.12);
}
.cartpagen-qty-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
  gap: 12px;
  height: 36px;
}
.cartpagen-qty-btn {
  background: rgba(255, 255, 255, 0.0);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cartpagen-qty-btn:hover {
  background: rgba(128, 234, 86, 0.85);
}
.cartpagen-qty-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* src/pages/cart-new/cartpage.css */
.cartpage-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 24px;
  width: 100%;
  padding: 0 4rem;
}
.cartpage-left {
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 100px);
  overflow: hidden;
}
.cartpage-list {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 6px;
}
.cartpage-list::-webkit-scrollbar {
  width: 8px;
}
.cartpage-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.cartpage-list-total {
  margin-top: 20px;
  font-size: 18px;
  text-align: right;
  font-weight: bold;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.cartpage-right {
  border-radius: 16px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 32px;
  height: 100%;
  color: #fff;
}
.cartpage-left:has(.cartpage-list + p) {
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .cartpage-container {
    grid-template-columns: 1fr;
  }
  .cartpage-right {
    position: static;
    margin-top: 16px;
  }
}
.cartpagen-summary {
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  color: #ffffff;
  background:
    linear-gradient(
      to left,
      #192F4C,
      #515C7A);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.cartpagen-summary-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}
.cartpagen-summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  width: 100%;
  margin: 4px 0;
}
.cartpagen-summary-row {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.cartpagen-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.cartpagen-summary-button {
  padding-top: 12px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .cartpage-right {
    position: static;
    margin-top: 24px;
  }
}

/* src/pages/dashboard/dashboard.css */
.dashboard-page {
  color: #f1f5f9;
  background:
    radial-gradient(
      circle at top left,
      #111827,
      #0a0f1c);
  padding: 2rem 20rem;
  border-radius: 1rem;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}
.stats-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.stats-card {
  flex: 1;
  background: #4D5776;
  backdrop-filter: blur(8px);
  border: 1px solid rgb(255, 255, 255);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.stats-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.revenue-chart {
  margin-top: 2.5rem;
  background: #4D5776;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.followers-card {
  margin-top: 2rem;
  background: #4D5776;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgb(255, 255, 255);
  text-align: center;
}
.followers-count {
  font-size: 2rem;
  font-weight: 600;
  color: #8b5cf6;
}
.green {
  color: #10b981;
}
.gray {
  color: #9ca3af;
}
.metric-card {
  margin-top: 2rem;
  background: #4D5776;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 12px;
  padding: 1.5rem;
  color: #f1f5f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
}
.metric-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}
.metric-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.metric-card-body h1 {
  font-size: 2rem;
  margin: 0.3rem 0;
}
.metric-card-footer {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.metric-card-footer button {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #f9fafb;
  cursor: pointer;
}
.pill {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
}
.pill.positive {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.pill.gray {
  background: rgba(255, 255, 255, 0.1);
  color: #d1d5db;
}

/* src/pages/node-editor/node-editor.css */
.nodeeditor {
  width: 1000px;
}
.editor-input {
  border: 2px solid transparent;
  width: 25em;
  height: 2.5em;
  padding-left: 0.8em;
  outline: none;
  overflow: hidden;
  background-color: #F3F3F3;
  border-radius: 10px;
  transition: all 0.5s;
}
.basicform {
  width: min-content;
  padding: 20px;
  background-color: rgba(74, 84, 120, 0.486);
  border-radius: 8px;
  border: 1px solid #ffffff22;
  backdrop-filter: blur(6px);
}
.basicform label {
  font-weight: 500;
  margin-right: 4px;
}
.editor-input {
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
.form-row {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 10px;
  width: 100%;
}
.basicform .form-row:last-child {
  border-bottom: none;
}
.form-row label {
  width: 120px;
  font-weight: 500;
}
.data-row {
  text-align: center;
}
.data-row .cell {
  padding: 10px;
  border-bottom: 1px solid #ffffff37;
}
.highlight .cell {
  background-color: rgba(7, 125, 244, 0.3);
  transition: background-color 0.3s ease;
}
.data-row .parent-cell {
  cursor: pointer;
}
.data-row .parent-cell:hover {
  background-color: rgba(193, 193, 193, 0.3);
}

/* src/pages/policies/Policies.css */
.policies {
}
.policies-list {
  margin-left: 20px;
}
.policies-list li {
  padding-bottom: 20px;
}

/* src/common/footer/Footer.css */
.footer-container {
  padding: 60px;
  background-color: #4c5370;
  margin-top: 40px;
  padding-bottom: 40px;
}
.footer {
  position: relative;
}
.footer-copyright {
}
.footer-policies {
  position: absolute;
  right: 0;
  font-weight: bold;
}

/* src/pages/admin/financial-dashboard/financial-dashboard.css */
.findash {
  min-width: 1000px;
}
.findash-orders-orderstable {
}
.findash-orders-orderstable td,
.findash-orders-orderstable th {
  padding: 10px;
  border: 1px solid white;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
