﻿/* Genel Sayfa Stilleri */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Başlıklar */
h1, h2, h3 {
    color: #222;
    text-align: center;
}

/* Fiyat Gösterimi için Stil */
#price {
    font-size: 1.5em;
    font-weight: bold;
    color: #4caf50;
    text-align: center;
    margin: 20px 0;
}

/* Buton Stilleri */
button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    button:hover {
        background-color: #45a049;
        transform: scale(1.1);
    }

/* Form Stilleri */
form {
    max-width: 400px;
    margin: 20px auto;
    padding: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    form input, form select {
        width: 100%;
        padding: 10px;
        margin: 5px 0 20px 0;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

    form label {
        font-size: 14px;
        font-weight: bold;
    }

/* Tablo Stili */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

    table th, table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }

    table th {
        background-color: #4caf50;
        color: white;
    }

    table tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    table tr:hover {
        background-color: #ddd;
    }

/* Responsive Tasarım */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    form {
        width: 90%;
    }

    table {
        font-size: 14px;
    }
}
