/* Blog post table styling */
.post table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

.post table th,
.post table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

.post table th {
    background-color: #091F30;
    color: white;
    font-weight: 600;
}

.post table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.post table tr:hover {
    background-color: #f1f1f1;
}
