@font-face {
    font-family: "Inter";
    src: url("https://cdn.jsdelivr.net/npm/@fontsource/inter@5.1.0/files/inter-latin-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
  }
  
  :root {
    --font-family: "Inter", sans-serif;
    --primary-color: #4f46e5;
  }

.sc-toggle-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sc-toggle-switch {
    position: relative;
    width: 46px;
    height: 21px;
    background-color: #ccc;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sc-toggle-switch::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    background-color: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sc-toggle-switch.sc-active {
    background-color: var(--primary-color);
}
    
.sc-toggle-switch.sc-active::before {
    transform: translateX(25px);
}

.sc-label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 0.875rem;
    color: #333;
    margin-top: 1px;
}