body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #d9534f; /* Kırmızı üst menü */
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
}

header .logo h1 {
    margin: 0;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-left: 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

footer {
    background-color: #d9534f; /* Kırmızı footer */
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Genel buton stili */
button {
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 16px;
}

/* Başka Öner butonu */
.another-suggestion-button {
    background-color: #ff5733; /* Turuncu */
}

.another-suggestion-button:hover {
    background-color: #e64a19; /* Koyu turuncu */
}

/* Malzemeler ve Tarif butonu */
.ingredients-recipe-button {
    background-color: #28a745; /* Yeşil */
}

.ingredients-recipe-button:hover {
    background-color: #218838; /* Koyu yeşil */
}

/* Ara butonu */
.search-button {
    background-color: #007bff; /* Mavi */
}

.search-button:hover {
    background-color: #0056b3; /* Koyu mavi */
}

/* Geri Dön butonu */
.back-button {
    background-color: #6c757d; /* Gri */
}

.back-button:hover {
    background-color: #5a6268; /* Koyu gri */
}

/* Arama formu stili */
.search-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-form form {
    margin-bottom: 20px;
}

.search-form h3 {
    margin: 0;
}

.search-form input {
    padding: 8px;
    margin-right: 5px;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.search-form button {
    padding: 8px 15px;
}

/* Sonuçlar için stil */
.result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.result-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
    width: 100%;
    max-width: 600px;
}

.result-item h2 {
    margin-top: 0;
}

.result-item p {
    margin: 10px 0;
}

.result-item button {
    margin-top: 10px;
}
.pagination {
    margin: 20px 0;
}

.page-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    background-color: #FFA500; /* Turuncu renk */
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
}

.page-button:hover {
    background-color: #FF8C00; /* Hover efekti için koyu turuncu */
}

.page-button.active {
    background-color: #FF5722; /* Aktif sayfa için koyu turuncu */
    pointer-events: none;
}

.page-button:focus {
    outline: none;
}
    .feedback-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin: 20px 0;
    }

    .feedback-button {
        padding: 10px 20px;
        font-size: 14px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .feedback-button.like { background-color: #4CAF50; color: white; }
    .feedback-button.neutral { background-color: #FFC107; color: white; }
    .feedback-button.dislike { background-color: #F44336; color: white; }

    .feedback-button:active {
        transform: scale(0.95);
    }