/* assets/css/style.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.card {
    border: none;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.post-content {
    font-size: 1.1rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.post-content table th,
.post-content table td {
    border: 1px solid #dee2e6;
    padding: 0.5rem;
}

.post-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.badge {
    font-weight: 500;
}

.alert-light {
    background-color: #f8f9fa;
}

/* Ad styling */
.adsbygoogle {
    display: block;
    text-align: center;
    margin: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
} 
