/* blog.css */

/* Blog Card Styles */
.card {
    border: 1px solid #343a40; /* Dark border color */
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.card-text {
    color: #6c757d; /* Secondary text color */
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: #343a40; /* Dark background color for dropdown */
}

.dropdown-item {
    color: #ddd; /* Light text color for dropdown items */
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #495057; /* Darker background on hover */
    color: #fff; /* White text color on hover */
}

/* Navigation Link Styles */
.navbar-nav .nav-link {
    color: #ddd; /* Light text color for links */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #fff; /* White text color on hover */
}

/* Add this to your blog.css or a custom CSS file */

.pagination {
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    color: #007bff;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    margin-left: -1px;
    line-height: 1.25;
    padding: 0.5rem 0.75rem;
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.article-title {
    text-align: center;
}
.article-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.article-content {
    text-align: justify;
}

.article-content a {
    color: #f1bc5e;
}
.article-content a:hover {
    color: #e0a44a; /* Adjust hover color if needed */
}

