:root {
    --primary-white: rgb(235, 235, 235);
    --primary-white-opacity-8: rgba(235, 235, 235, 0.8);
    /* --primary-text: #fff; */
    --primary-text: #38383a;
    --secondary-grey: #666668;
    --background-pertol-mavisi: #2c3e50;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Quicksand;
}

body {
    display: flex;
    flex-direction: column;
    /* Minimum yükseklik, tarayıcı penceresinin yüksekliği kadar */
    /* min-height: 100vh; */
    color: var(--primary-text);
    /* background-color: #C1C7D4; */
    background: linear-gradient(90deg,rgba(201, 207, 212, 1) 0%, rgba(181, 181, 181, 1) 100%);

}

h1 { color: #4A4B4F; }

a { text-decoration: none; }
p.bold-links  {
    color: white;
    background-color: #4A4B4F;
    /* border-radius: 3px; */
    padding: 0 5px;
}


@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
}

.page-wrapper {
    padding: 25px;
    margin-top: 200px;
    width: 95%;
    max-width: 800px;
    margin: auto;
    background-color: #C1C7D4;
    box-shadow: 0px 0px 40px rgba(0,0,0, 0.3);
}

@media only screen and (max-width: 568px) {
    .page-wrapper {
        /* background-color: black; */
        width: 100%;
        margin: 0;
        padding: 5;
    }
}



.container {
    margin: 15px;
    padding: 10px;
}

#main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.buton {
    padding: 15px;
    background-color: white;
    color: red;
    font-size: 18px;
    border-radius: 15px;
    text-decoration: none;
}
.buton:hover {
    background-color: red;
    color: white;
}










/* TABLO DÜZENLEMESİ */
table {
    width: 100%;  /* Tablo genişliği */
    border-collapse: collapse; /* Kenarlıkları birleştir */
    margin: 25px 0; /* Üst ve altta boşluk */
    font-size: 0.9em;
}
.table-container {
    overflow-x: auto;
    padding-bottom: 10px;
}
th, td {
    border: 1px solid #dddddd; /* Hücre kenarlıkları */
    text-align: left; /* Metni sola hizala */
    padding: 8px; /* Hücre içi boşluk */
    width: 33%;
}
th {
    background-color: #f2f2f2; /* Başlık satırı arkaplan rengi */
    font-weight: bold;
}

td, td a {
    color: var(--primary-white)
}

tr:nth-child(even) {
    background-color: #464444; /* Çift sıradaki satırların arkaplan rengi */
    color: var(--primary-white);
}
tr:nth-child(odd) {
    background-color: var(--secondary-grey);
}
.error {
    color: red;
    font-weight: bold;
}
.no-data {
    color: blue;
}

@media screen and (max-width: 768px) {
    .table-container {
        padding-bottom: 1px;
    }
    
    .computer-only {
        display: none;
    }
}


/* TABLO DÜZENLEMESİ bitti */


.icon-box {
    min-width: 250px;
    max-width: 500px;
    padding: 10px 0;
    margin-bottom: 30px;
    box-shadow: 3px 3px 15px rgba(0,0,0, 0.3);
}

/* İletişim Formmu Düzenlemesi */
.form-container {
    border: 1px solid black;
    border-radius: 15px;
    padding: 15px;
    background-color: white;
}

.form-group {
    margin: 5px 0;
}
.form-group label,
.form-group input,
.form-group textarea {
    display: block;
    width: 100%;
    padding: 5px;
}

.form-group input,
.form-group textarea {
    border: 1px solid lightblue;
    border-radius: 5px;
}
.form-group input:focus {
    border-color: lightblue;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}


form button {
    width: 100%;
    /* background-color: rgb(102, 197, 102); */
    background-color: var(--secondary-grey);
    border: 1px solid var(--secondary-grey);
    border-radius: 5px;
    color: white;
    font-size: 18px;
    font-weight: bolder;
    padding: 10px;
    cursor: pointer;
    margin: 5px 0 ;
    transition: all .5s;
}
form button:hover {
    border: 1px solid var(--secondary-grey);
    background-color: white;
    color: var(--secondary-grey)
}


/* İletişim Formmu Düzenlemesi bitti */

footer {
    background-color: #2c3e50;
    width: 100%;
    color: var(--primary-white);
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

footer .container  {
    display:flex;
    justify-content: space-around;
    align-content: center;
    text-align: center;
    flex-wrap: wrap;
    
}


footer a {
    color: white;
}