/* Custom Styles to complement Bootstrap */

body {
    background-color: #f8f9fa;
}

/* Card styles */
.card {
    border: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

/* Sidebar widget styling */
.sidebar-widget {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Post content styling */
#post-container h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.post-meta {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0.5rem 0;
}

/* Telegram button */
.telegram-btn {
    display: inline-block;
    background: #0088cc;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    font-weight: bold;
    text-decoration: none;
}
.telegram-btn:hover {
    background: #006da3;
}