/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.navbar .nav-link {
    color: #333;
}

.navbar .nav-link:hover {
    color: #007bff;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.2rem;
}

.jumbotron {
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.9), rgba(102, 187, 106, 0.9)), url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    background-blend-mode: overlay;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.jumbotron h1 {
    font-size: 2rem;
    color: white;
}

.jumbotron .form-control {
    max-width: 300px;
    margin-right: 10px;
    text-transform: uppercase;
}

.jumbotron button {
    width: 100px;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    color: #007bff;
}

.result-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

/* Info-block styling */
.info-block {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9));
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-block h6 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.info-block p {
    margin: 0.3rem 0;
    color: #555;
}

.info-block p strong {
    color: #333;
}

footer {
    background-color: #f1f1f1;
    padding: 1.5rem;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #e0e6ed;
}

footer a {
    color: #2e7d32;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

.articles-section {
    margin-top: 20px;
}
.articles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.article-card {
    flex: 0 0 calc(33.333% - 20px);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.article-card a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
}

.article-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.breadcrumb-container {
    margin: 10px 0;
    font-size: 12px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
}

.breadcrumb-item {
    margin-right: 5px;
}

.breadcrumb-item a {
    color: #2e7d32 !important;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}


@media (max-width: 768px) {
    .navbar .navbar-brand {
        font-size: 1rem;
    }

    .jumbotron h1 {
        font-size: 1.5rem;
    }

    .jumbotron .form-control {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .jumbotron button {
        width: 100%;
    }
}
