
:root {
    --primary-color: #2a3e50;
    --secondary-color: #ef5d34;
    --active-color: #24d4dd;
    --border-color: #cbb9bc;
    --title-color: #364f6b;
    --para-color: #637f9e;
  }
  
  body {
    user-select: none;
    font-family: "Raleway", sans-serif;
  }
  .containerHori {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .containerHoriDyn {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  @media only screen and (max-width: 1080px) {
    .containerHoriDyn {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
    }
  }
  .containerVertiDyn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  @media only screen and (max-width: 1080px) {
    .containerVertiDyn {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }
  .containerVerti {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .Main-Loader {
    width: 130px;
    height: 130px;
    border: 6px solid var(--title-color);
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-sizing: border-box;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes blink {
    0% {
      color: var(--title-color);
    }
    50% {
      color: transparent;
    }
    100% {
      color: var(--title-color);
    }
  }
  
  .slider-container {
    width: 100%;
  }
  
  .slider {
    -webkit-appearance: none;
    width: 363px;
    height: 7px;
    background: var(--secondary-color);
    outline: none;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
    border-radius: 14px;
    margin-top: 15px;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 100%;
  }
  
  .slider-value {
    text-align: center;
    margin-top: 10px;
  }
  
  /* UI Section */
  
  .Form-Table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  .Form-Title {
    font-size: 13px;
    color: var(--title-color);
    margin-top: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .Form-Box {
    letter-spacing: 1px;
    border-color: var(--border-color);
    border-style: solid;
    border-width: 1px;
    color: var(--para-color);
    width: 350px;
    height: auto;
    padding: 4px;
    font-weight: 600;
    font-family: system-ui;
    font-size: small;
    margin: 5px;
    cursor: text;
    user-select: none;
    outline: none;
    line-break: anywhere;
    border-radius: 5px;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .Form-Box:focus {
    color: --title-color;
  }
  
  .UI-Sublogo {
    font-family: "Orbitron", sans-serif;
    color: rgb(239 93 52);
    font-weight: bold;
    font-size: 16px;
    width: fit-content;
    left: -96px;
    top: 36px;
    position: relative;
    letter-spacing: 2px;
  }
  @media only screen and (max-width: 1032px) {
    .UI-Sublogo {
      scale: 70%;
      top: 43px;
      left: -66px;
    }
  }
  .UI-Versionbox {
    font-family: "Arvo", serif;
    color: rgb(237 112 131);
    font-weight: bold;
    font-size: 16px;
    width: fit-content;
    left: 241px;
    top: -9px;
    position: relative;
    letter-spacing: 2px;
  }
  
  .UI-Logo {
    background-image: url(https://sign.namebirthfrance.com/src/assets/images/rlogo.svg);
    font-size: 38px;
    width: 254px;
    height: 41.3px;
    position: relative;
    margin: 35px;
    background-size: cover;
    margin-bottom: 20px;
  }
  
  @media only screen and (max-width: 1032px) {
    .UI-Logo {
      scale: 70%;
    }
  }
  
  .UI-Heading {
    font-size: 15px;
    text-wrap: pretty;
    text-align: center;
    margin: 0px 0px 18px 0px;
    color: var(--title-color);
    font-weight: 600;
    letter-spacing: 1px;
    user-select: none;
    padding: 0px 10px 0px 10px;
  }
  
  .UI-Button {
    background-color: var(--primary-color);
    color: white;
    width: auto;
    height: auto;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
    font-size: medium;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    outline: none;
    border: none;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .UI-Button:hover {
    background-color: var(--secondary-color);
  }
  .UI-Button-Function {
    background-color: var(--title-color);
    color: var(--title-color);
    width: auto;
    height: auto;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
    font-size: medium;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    outline: none;
    border: none;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .UI-Button-Function:hover {
    color: white;
  }
  .UI-Button-Icon {
    flex-shrink: 0;
    margin-inline-start: 10px;
    pointer-events: none;
    vertical-align: top;
    background-repeat: no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    user-select: none;
    transition: background-image 0.3s ease 0s;
  }
  .UI-Title {
    font-size: 21px;
    color: var(--secondary-color);
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
  }
  .UI-Underline {
    width: 55%;
    height: 3px;
    background-color: var(--title-color);
    border-radius: 15px;
  }
  .UI-Layout {
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0px 2px 6px 2px rgb(172 172 172 / 34%), 0px 1px 2px 0px rgb(165 165 165 / 11%);
    width: auto;
    height: auto;
    padding: 20px;
    margin: 20px;
    color: #425c5c;
    position: relative;
  }
  .UI-Popup {
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0px 2px 6px 2px rgb(172 172 172 / 34%), 0px 1px 2px 0px rgb(165 165 165 / 11%);
    width: auto;
    height: auto;
    padding: 20px;
    margin: 20px;
    color: #425c5c;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
  }
  .UI-Overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  .Drop-List {
    position: relative;
    display: inline-block;
  }
  .Drop-Content {
    list-style: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: auto;
    box-shadow: 0px 2px 6px 2px rgb(172 172 172 / 34%), 0px 1px 2px 0px rgb(165 165 165 / 11%);
    z-index: 1;
    border-radius: 10px;
  }
  
  .Drop-Content a {
    padding: 12px 16px;
    margin-left: -20px;
    text-decoration: none;
    color: var(--title-color);
    display: block;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
  }
  
  .Drop-Content a:hover {
    background-color: var(--title-color);
    color: whitesmoke;
    transform: scale(1.1);
  }
  .Drop-Content-Color {
    display: flex;
    flex-direction: column;
    align-content: center;
    list-style: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 85px;
    box-shadow: 0px 2px 6px 2px rgb(172 172 172 / 34%), 0px 1px 2px 0px rgb(165 165 165 / 11%);
    z-index: 1;
    border-radius: 10px;
  }
  .Drop-Content-Color a {
    padding: 12px 16px;
    margin-left: -32px;
    margin-right: 7px;
    margin-top: 8px;
    margin-bottom: 8px;
    width: 65px;
    height: 10px;
    text-decoration: none;
    color: var(--title-color);
    display: block;
    border-radius: 10px;
    cursor: pointer;
    border: solid 3px;
    border-color: transparent;
    transition: border-color 0.4s ease, transform 0.4s ease;
  }
  
  .Drop-Content-Color a:hover {
    transform: scale(1.1);
    border-color: var(--title-color);
    color: whitesmoke;
  }
  
  /* Kit Section */
  
  input[type="color" i] {
    appearance: auto;
    inline-size: 50px;
    block-size: 50px;
    cursor: pointer;
    box-sizing: border-box;
    background-color: transparent;
    color: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    border-radius: 5px;
    padding: 2px;
    margin: 6px;
    width: 120px;
    height: 51px;
  }
  input[type="color" i] {
    appearance: auto;
    inline-size: 50px;
    block-size: 50px;
    cursor: pointer;
    box-sizing: border-box;
    background-color: transparent;
    color: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    border-radius: 5px;
    padding: 2px;
    margin: 10px;
    width: 56px;
    height: 51px;
  }
  input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
  }
  input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 5px;
    padding: 3px;
  }
  input[type="file"] {
    letter-spacing: 1px;
    background-color: #ed7083;
    color: white;
    width: auto;
    min-width: 142px;
    height: auto;
    padding: 10px;
    font-weight: 600;
    font-size: medium;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    outline: none;
    border: none;
    text-align: center;
  }
  input[type="file"] + label {
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    outline: none;
  }
  input[type="file"]::file-selector-button {
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    outline: none;
  }
  #file-input::-webkit-file-upload-button {
    visibility: hidden;
    display: none;
  }
  input[type="text"] {
    letter-spacing: 1px;
    background-color: #ed7083;
    color: white;
    width: auto;
    min-width: 142px;
    height: auto;
    padding: 10px;
    font-weight: 600;
    font-size: medium;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    outline: none;
    border: none;
    text-align: center;
  }
  