@charset "UTF-8";
/* CSS Document */
/* Formun başlangıçta görünmemesini sağla */
.form-container {
    position: fixed;
    top: 0;
    right: -400px; /* Başlangıçta gizli */
    width: 350px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto; /* Form içeriği uzun olursa kaydırılabilir yap */
}

/* Açık olduğunda form sağdan gelir */
.form-container.show {
    right: 0;
}

/* Aç butonunun stilleri */
.open-btn {
    background: blue;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    margin: 20px;
}

/* Listbox (Çoklu seçim kutusu) */
select[multiple] {
    width: 100%;
    height: auto;
    padding: 5px;
}
/* KVKK metni için kaydırılabilir alan */
        .kvkk-text {
            border: 1px solid #ccc;
            padding: 10px;
            width: 100%;
            height: 200px;
            overflow-y: scroll;
            margin-bottom: 10px;
        }