.resource-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

@media (max-width: 600px) {
    .resource-container {
        margin: 20px 10px;
        padding: 15px;
    }
}

.resource-container h1 {
    text-align: center;
    color: #dd9f1a;
    margin-bottom: 30px;
}

.search-container {
    margin-bottom: 30px;
    text-align: center;
    padding: 0 10px;
}

#searchBox {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    #searchBox {
        padding: 10px 15px;
        font-size: 14px;
    }
}

#searchBox:focus {
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.article-list {
    list-style: none;
    padding: 0;
}

.article-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item:hover {
    background-color: #f9f9f9;
}

.article-link {
    text-decoration: none;
    color: #444;
    font-size: 1.1em;
    font-weight: 500;
    display: block;
    width: 100%;
}

.article-link:hover {
    color: #667eea;
}

.no-results {
    text-align: center;
    color: #777;
    margin-top: 20px;
}
