body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: #ffffff;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
}

.card {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

a {
    text-decoration: none;
    color: #2c3e50;
}

a:hover {
    color: #e74c3c;
}

.category {
    font-size: 14px;
    margin-top: 5px;
    color: #777;
}

.button {
    display: inline-block;
    padding: 8px 14px;
    background: #2c3e50;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

.button:hover {
    background: #e74c3c;
}

.site-header {
    background: #2c3e50;
    padding: 20px 0;
}

.header-inner {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.search-wrapper {
    margin-top: 15px;
    position: relative;
}

.search-wrapper input {
    padding: 10px 15px;
    width: 300px;
    border-radius: 25px;
    border: none;
    outline: none;
}

.search-wrapper button {
    padding: 10px 18px;
    border-radius: 25px;
    border: none;
    background: #e74c3c;
    color: #fff;
    cursor: pointer;
    margin-left: 5px;
}

.search-wrapper button:hover {
    background: #c0392b;
}

.suggestions {
    background: #fff;
    position: absolute;
    width: 100%;
    top: 45px;
    left: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.suggest-item {
    padding: 8px 12px;
}

.suggest-item:hover {
    background: #f0f0f0;
}
