/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#app {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

#search-form {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

#search-input {
    flex-grow: 1;
    padding: 0.5rem;
    margin-right: 0.5rem;
}

#results {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item {
    margin: 0.5rem;
    text-align: center;
    cursor: pointer;
}

.item img {
    max-width: 200px;
    height: auto;
}

.item-title {
    font-weight: bold;
}

.item-date {
    font-size: 0.9rem;
}

#breadcrumbs {
    margin: 10px 0;
}

.breadcrumb {
    color: #007bff;
    cursor: pointer;
}

.breadcrumb:hover {
    text-decoration: underline;
}