#noticias .search-bar {
    margin-top: 15px;
}

#noticias .search-bar input {
    padding: 8px;
    border: none;
    border-radius: 5px;
    width: 220px;
}

#noticias .search-bar button {
    padding: 8px 12px;
    margin-left: 5px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

#noticias .search-bar button:hover {
    background: #111;
}

.container {
    width: 80%;
    margin: 30px auto;
}

.noticia {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 6px solid #f9a825;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.noticia h2 {
    margin-top: 0;
    color: #333;
}

.noticia p {
    color: #555;
}

.noticia .data {
    font-size: 14px;
    color: #888;
}