:root {
  /* Primary Colors */
  --color-rosegold: #6B0999;
  --color-rosegold-transparent: rgba(212, 0, 95, 0.09); /* Strong Transparent Pink */
  --color-rosegold-transparent-hover: rgba(212, 0, 95, 0.16); /* Strong Transparent Pink */
  --color-rosegold-hover: #57009c; /* Rich Luxe Pink for Hover */
  --color-rosegold-active: #6B0999; /* Deep Wine-Pink for Active State */

  /* Complementary Colors */
  --color-rosegold-light: #6B0999; /* Vibrant Warm Blush */
  --color-rosegold-dark: #6B0999; /* Intense Mulberry for Depth */

  /* Neutral Colors */
  --color-white: #ffffff; /* Classic White */
  --color-gray-light: #d7d7d7; /* Soft Elegant Gray */
  --color-gray-dark: #2c2c2c; /* Deep Charcoal Gray for Strong Contrast */

  /* Accent Colors */
  --color-gold: #c98c43; /* Bold Metallic Gold */
  --color-champagne: #e4c59e; /* Rich Champagne Gold */

  /* Text Colors (High Contrast) */
  --color-text-dark: #2c2c2c; /* Almost Black for Strong Readability */
  --color-text-light: #fdfdfd; /* Soft White for Dark Backgrounds */
}

.hidden{
  display: none !important;
}

.app-btn-primary {
  background-color: var(--color-rosegold) !important;
  border-color: var(--color-rosegold-dark) !important;
  color: var(--color-white);
}
.app-btn-primary-transparent {
  background-color: var(--color-rosegold-transparent) !important;
  border-color: var(--color-rosegold-dark) !important;
  color: var(--color-rosegold) !important;
}

.app-btn-primary-transparent:hover {
  background-color: var(--color-rosegold-transparent-hover) !important;
  border-color: var(--color-rosegold-dark) !important;
  color: var(--color-rosegold) !important;
}
.app-btn-primary:hover {
  background-color: var(--color-rosegold-hover) !important;
}

.app-btn-primary:active {
  background-color: var(--color-rosegold-active) !important;
}


.app-btn-custom-radius {
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
}

.app-heading-rose-gold {
  color: var(--color-rosegold);
}

.app-checkbox-rose-gold:checked {
  background-color: var(--color-rosegold) !important;
  border-color: var(--color-rosegold-dark) !important;
}
.app-checkbox-rose-gold:focus {
  border-color: var(--color-rosegold-light) !important;
}

body{
    font-size: 16px;
    color: var(--color-text-dark) !important;
    background: var(--color-gray-light);
    font-family:"Open Sans", sans-serif !important;
}

.app-rose-gold-light-background {
    background-color: var(--color-rosegold-light) !important;
}

.app-rose-gold-dark-background {
    background-color: var(--color-rosegold-dark) !important;
}



/* WebKit Browsers (Chrome, Edge, Safari) */
html::-webkit-scrollbar {
  width: 7px; /* Width of the scrollbar */
}

html::-webkit-scrollbar-thumb {
  background: var(--color-gray-dark); 
  border-radius: 10px;
}

.form-control:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 0 .2rem rgba(0, 0, 0, 0.125) !important;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--color-gray-dark);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

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
































.app-primary-btn {
  background: #6B0999;
  color: white;
  border: none;
  height: 40px;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.app-primary-btn:hover {
  background: #57009c;
}

@media (max-width: 768px) {
  .app-primary-btn {
    font-size: 11px;
    padding: 6px 10px;
    margin-left: auto;
  }
}

.heading-purple {
  color: #6B0999;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}











.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: #f2f2f2;
  background-image: none;
  border: none;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
}

.gsi-material-button:disabled .gsi-material-button-state {
  background-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state, 
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #001d35;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #001d35;
  opacity: 8%;
}