.img-circle {
    width: 100%;
    height: auto;
    display: flex;
}

.header-logo {
    margin-left: 20px;
    align-items: left;
    margin-right: 10px;
}

.header-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-preview {
    display: flex;
    align-items: center;
}

.branding_wrapper {
    margin: 0px;
}


.branding_wrapper fieldset {
    flex-basis: 100%;
    max-width: 900px;
}

.branding_wrapper legend {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: normal;
}

.branding_wrapper label {
    width: 200px;
}

.branding_wrapper input {
    width: 100px;
    margin-right: 20px;
}

.input_color {
    height: 35px !important;
    padding: 5px !important;
    background-color: transparent !important;
    border-radius: 10px !important;
}

.styling-element {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 10px;
}

.styling-element-color {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    width: 30%;
    gap: 10px;
}

.input_color {
    -webkit-appearance: none;
    -moz-animation: none;
    appearance: none;
    backgroun-color: transparent;
    width: 50px !important; /* Adjust size as needed */
    height: 50px !important;
    border: 1px solid #f1f1f1 !important; /* Optional: removes default border */
    border-radius: 50% !important; /* Makes it circular */
    cursor: pointer; /* Optional: gives a pointer cursor */
    overflow: hidden; /* Ensures no overflow on small inputs */
    padding: 0px !important;
  }

  .input_color::-webkit-color-swatch {
    border: none; /* Optional: removes default border */
    border-radius: 50%; /* Optional: makes it circular */
    padding: 0; /* Optional: removes default padding */
  }

  .input_color::-moz-color-swatch {
    border: none; /* Optional: removes default border */
    border-radius: 50%; /* Optional: makes it circular */
    padding: 0; /* Optional: removes default padding */
  }

  .presets-container {
    display: flex;
    gap: 20px;
  }

  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    vertical-align: middle;
  }
  .toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
  }
  .toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  .toggle-input:checked + .toggle-slider {
    background-color: #6667AB;
  }
  .toggle-input:checked + .toggle-slider:before {
    transform: translateX(20px);
  }