body {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #323232; 
    font-size: 14px;
}

.sticky-top {
    background-color: transparent; /* İlk başta transparan */
    transition: background-color 0.3s ease; /* Geçiş efekti */
}

.scrolled {
    background-color: white; /* Scroll sonrası beyaz */
    transition: background-color 0.3s ease-in-out;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* İsteğe bağlı gölge */
}
.signUpButton {
    background: linear-gradient(180deg, #763EFB 0%, #A75CE8 100%);
    color: #ffffff;
    font-weight: 700;
    line-height: 32px;
    height: 44px
}

.signInButton {
    line-height: 32px;
    height: 44px
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.centered-form {
     /* Ekran yüksekliği - header/footer */
    display: flex;
    justify-content: center; /* Yatayda ortala */
    align-items: center; /* Dikeyde ortala */
    flex-direction: column; /* Dikey hizalama korunsun */
    width: 100%; /* Tam genişlik */
}

.form-text-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    color: #8f8f8f;
    background-color: #f9f9f9;
}

    .form-text-input::placeholder {
        color: #d3d3d3;
    }

.form-text-button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(112.8deg, #6A36FF -15.76%, #AC5FE6 102.86%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .form-text-button:hover {
        background-color: #6d48a6;
    }




/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E4E4E4; 
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: -1px;
        bottom: 0px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #EEDCFE;
    height: 26px;
    width: 52px; 
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-color: #A65CE8;
    bottom: 0px;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
    height: 26px;
}

    .slider.round:before {
        border-radius: 50%;
    }


.text-gray {
    color: gray;
}

.text-purple {
    color: purple;
}

.search-button:hover {
    background: linear-gradient(180deg, #763EFB 0%, #A75CE8 100%);
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow:unset;
}

.rounded-text-input
{
    border-radius:18px;
}

.input-group-text{
    background-color:transparent;
}


footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f8f9fa 100%);
}

.footer-logo {
    height: 40px; /* Adjust the logo size as needed */
    opacity: 0.5; /* Faded effect for the logo */
}



.newurl {
    display: flex; /* Flexbox kullanılır */
    justify-content: center; /* Yatayda ortalar */
    align-items: center; /* Dikeyde ortalar */
    border: 1px solid #A65CE8;
    text-decoration: none; /* Varsayılan alt çizgiyi kaldırır */
    background: linear-gradient(112.8deg, #6A36FF -15.76%, #AC5FE6 102.86%);
    color: #ffffff;
    height: 60px;
}

.yeni {
    display: flex; /* Flexbox kullanılır */
    justify-content: center; /* Yatayda ortalar */
    align-items: center; /* Dikeyde ortalar */
    border: 1px solid #A65CE8;
    text-decoration: none; /* Varsayılan alt çizgiyi kaldırır */
    background: linear-gradient(112.8deg, rgba(106, 54, 255, 0.1) -15.76%, rgba(172, 95, 230, 0.1) 102.86%);
    color: #A65CE8;
    height: 60px;
}

.accordion-panel {
    animation-timing-function: ease-in-out;
}

    .accordion-panel input::placeholder {
        color: #B9B7E8; /* Purple color in RGB */
    }
    .accordion-panel input::-webkit-input-placeholder {
        color: #B9B7E8; /* Chrome, Safari */
    }

    .accordion-panel input::-moz-placeholder {
        color: #B9B7E8; /* Firefox */
    }

    .accordion-panel input:-ms-input-placeholder {
        color: #B9B7E8; /* Internet Explorer */
    }
