/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.slider {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
    position: relative;
    height: 220px;
}

.slider-track {
    display: inline-flex;
    gap: 20px;
}

.slide {
    flex: 0 0 auto;
    width: 250px;
    height: 180px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.slide:hover {
    transform: scale(1.05);
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.container {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* Form Elemanları */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 10px;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="textarea"],
select {
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 1.4rem;
    box-sizing: border-box;
}

select[multiple] {
    min-height: 200px;
}

button {
    background-color: #28a745;
    color: white;
    padding: 20px;
    font-size: 1.6rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

button:hover {
    background-color: #218838;
}

/* Linkler */
a {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #007bff;
    text-decoration: none;
    font-size: 1.5rem;
}

a:hover {
    text-decoration: underline;
}

/* Tablo Stili */
table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    background-color: #fff;
}

th, td {
    padding: 20px;
    text-align: left;
    font-size: 1.4rem;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #007bff;
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Mobil Uyumluluk */
@media (max-width: 700px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 25px;
    }
    input, select, button {
        font-size: 1.4rem;
        padding: 18px;
    }
}


