body {
    background-color: #eef1f3;
}

header {
    background-color: #4D963B;
    color: white;
    padding: 20px;
    height: 100px;
}

.navbar {
    background-color: #16714C;
    min-height: 60px;
}

.navbar-nav .nav-link {
    color: white !important;
    margin-right: 10px;
}

.form-control {
    color: black;
    border: none;
}

.main-content {
    margin-top: 20px;
    min-height: calc(100vh - 100px - 100px - 100px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.main-content .card {
    border: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.main-content .card .time-since {
    font-size: 12px;
}

.tags span {
    background-color: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 5px;
}

.search-results {
    z-index: 1000;
    top: 50px;
    right:0;
    width: 50vw;
    border: none !important;
    background: none !important;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.search-results a .card {
    color:white;
    background-color: rgb(40, 40, 40);
    margin-bottom: 5px;
    border: none;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #16714C;
    color: white;
    margin-top: 20px;
    width: 100%;
    height: 100px;
}

.single-activity .card-img-top{
    height: 300px;
    object-fit: cover;
}

.single-activity .blog-content {
    background-color: #eef1f3;
    padding: 20px;
}

.single-activity .blog-content h1 {
    font-size: 24px;
    color: #16714C;
    font-weight: bold;
    margin-bottom: 20px;
}

.single-activity .blog-content h2 {
    font-size: 20px;
    color: #16714C;
    margin-top: 10px;
}

.nav-link.active {
    font-weight: bold;
}

@media (max-width: 991px) {
    .search-results {
        width: 100%;
    }

    footer {
        display: none;
    }

    .single-activity .blog-content img{
        width: 100%;
        height: auto;
    }
}