@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap');

* {
    font-family: "Nunito Sans", sans-serif;
}

.logout-button {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    color: #495057;
}

.logout-button:hover {
    background-color: #e2e6ea;
}

.logout-button {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #dc3545;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Add styles for active links in navigation */
.navbar-nav .nav-link.active {
    color: #0d6efd;
    font-weight: 600;
}

/* Logout button styling */
.nav-item form button.nav-link {
    padding: 0.5rem 1rem;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
}

.nav-item form button.nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
}

.post-title {
    color: #333;
    font-weight: 800;
    line-height: 1.2;
    font-size: 2.5rem;
    padding: 46px 0
}

.post-content {
    font-weight: 400;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.card-text img {
    width: 100%;
    height: auto;
}

.attachment--preview.attachment--png > a > img {
    width: 100%;
    height: auto;
}