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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #000000;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.header-dishbook a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.header-nav {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.header-nav a {
    color: #007bff;
    text-decoration: none;
}

.header-accounts {
    font-size: 0.9rem;
}

.header-accounts a {
    color: #007bff;
    text-decoration: none;
}

main {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.recipes, .cards-area, .recipes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.recipe-card {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 1rem;
}

.recipe-card h2 {
    margin: 0 0 1rem 0;
}

.recipe-card h2 a {
    color: #007bff;
    text-decoration: none;
}

.recipe-card h2 a:hover {
    text-decoration: underline;
}

.recipe-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.recipe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.tags{
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

.search-block {
    margin-bottom: 1rem;
}

.search-block input[type="search"] {
    font-size: 1rem;
    border: 1px solid #ccc;
    width: 60%;
}

.search-block button {
    font-size: 1rem;
    cursor: pointer;
}

.profile-intro {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.profile-intro img {
    max-width: 100px;
}

.recipe-columns {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.recipe-columns > div {
    flex: 1;
}

@media (max-width: 600px) {
    .site-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .recipe-columns {
        flex-direction: column;
    }

    .search-block input[type="search"] {
        width: 100%;
        margin-bottom: 1rem;
    }

    .profile-intro {
        flex-direction: column;
    }
}
