/* Custom styles for the blog details page */

body {
    background-color: #f4f7fa;
}

.blog-post-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.blog-post-card:hover {
    transform: translateY(-5px);
}

.blog-post-card .card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-post-card .card-body {
    padding: 30px;
}

.blog-post-card .card-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-post-card .card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.blog-post-card .card-footer {
    background-color: #f8f9fa;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.author-bio {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comment-section .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comment-section textarea {
    border-radius: 10px;
    border-color: #e0e0e0;
    padding: 15px;
    transition: all 0.3s ease;
}

.comment-section textarea:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
