body {
    background-color: #e1e1e4;
   
}

.form {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: center; 
    position: absolute; /* formun sayfanın ortasında görünmesini sağlar*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-bslk {
    background-color: #4d4e4a;
    color: antiquewhite;
    padding: 15px;
    font-size: 22px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin: -30px -20px 30px -20px;
}

.form-item {
    margin-bottom: 20px;
    text-align: left;
}

.form-item label {
     display: block;
     margin-bottom: 5px;
    font-weight: bold;
}
.form-btn a{
    text-decoration:none;
    color:black;
}

input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

   

.button-grup {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.form-btn {
    padding: 10px 20px;
}
.form-btn:hover , .form-btn a:hover {
     background-color: #808080;
     transform: scale(1.05);  
}
/*açılır listeyi diğer input alanlarıyla aynı csste göstermek için*/
select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: white;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

select:focus {
     outline: none;
     border-color: #4d4e4a;
}

.panel-menu {
    list-style-type: none;
    text-align: center;
    
}
.panel-item {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-right: 55px;
    text-decoration: none;
    border-radius: 8px;
    padding: 10px;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.panel-item:hover {
        background-color:darkgray;
     }
.ders-prog {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 800px;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: center;
    position: absolute; /* formun sayfanın ortasında görünmesini sağlar*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top:30px;
}
.birlesik-satir {
    display: flex;
    gap: 15px;
}

    .birlesik-satir .form-item {
        flex: 1;
    }
/* Ders Programlarının görüntülenmesi*/
.liste {
    width: fit-content;
    height: fit-content;
    margin: 80px auto 0 auto;
    
}

th {
    background-color: #3a3a3a; 
    color: #fffbe6; 
    padding: 6px 10px;
    text-align: center;
    border-left-color:white;
    border-left:1px solid white;
  
}


td {
    border: 1px solid white;
    padding: 5px 8px;
    text-align: center;
   
}

tr:nth-child(odd) {
    background-color: #aaa9a9; 
}

 tr:nth-child(even) {
    background-color: #d6d6d6; 
}

 .btn-sil{
     color:red;
 }
.baslik {
    display: inline-block;
    margin: 30px auto;
    padding-bottom: 10px;
    border-bottom: 4px solid #4d4e4a;
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
}
 .baslik-disi{
     text-align:center;
 }
/*Sınav Sayaç Css*/
.sinavlar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.sinav {
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-top:200px;
}

.sinav-bslk {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    
}
.sinav-icerik h5 {
    font-size: 16px;
    color: #555;
}
.tyt {
    background: #e3f2fd; 
    border-left: 6px solid #64b5f6;
}

.ayt {
    background: #e8f5e9; 
    border-left: 6px solid #81c784;
}

.ydt {
    background: #fce4ec; 
    border-left: 6px solid #f48fb1;
}

.lgs {
    background: #fff3e0; 
    border-left: 6px solid #ffb74d;
}
.hosgeldin {
   
    padding: 80px 220px;
    margin-top: 80px;
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
/* navbar başlangıç*/
.navbar {
    background-color: #1e1e1e;
    padding: 0.5rem 1rem;
}

.navbar-link {
    color: #e0e0e0;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .navbar-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }

.navbar-liste {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-item {
    display: flex;
    align-items: center;
}
.gizlilik {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 70%;
    padding: 40px 30px 30px 30px; /* Üst padding arttı */
    box-sizing: border-box;
    text-align: center; /* Yazılar sola hizalanır */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    /* Başlık stilini ayıralım */
    .gizlilik h2 {
        margin-top: 0;
        margin-bottom: 20px;
        text-align: center; /* Başlığı ortala ama diğer yazılar sola hizalı */
    }
   .filtreli-dersler{
       border:1px solid black;
       width:max-content;
       height:max-content;
       position:relative;
       left:-90px;
       top:115px;

   }