/*   
	Theme Name: admgest
	Theme URL: http://alemaciell.com.br
	Description: Tema WordPress | Exclusivo - Layout, CSS, HTML, PHP e Wordpress.
	Author: AleMaciell
	Author URI: http://alemaciell.com.br
	Updated: 2026-04-26
*/

/* === FORCE LEFT ALIGNMENT for post content === */
.post h1, .post h2, .post h3, .post h4, .post h5, .post h6 { text-align: left !important; }
.post p { text-align: left !important; }
.post ul, .post ol { margin-left: 20px; padding-left: 20px; }
.post li { text-align: left !important; margin-bottom: 8px; list-style-position: outside; }

/* === TABLES WITH BORDERS & COLORS === */
.post table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}
.post table thead tr {
    background-color: #4c81db;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}
.post table th,
.post table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}
.post table tbody tr {
    border-bottom: 1px solid #ddd;
    background-color: #ffffff;
}
.post table tbody tr:nth-of-type(even) {
    background-color: #f3f6fb;
}
.post table tbody tr:hover {
    background-color: #e8eef7;
}
.post table tbody tr:last-of-type {
    border-bottom: 2px solid #4c81db;
}

/* === RESPONSIVE TABLES for mobile === */
@media screen and (max-width: 768px) {
    .post table {
        font-size: 13px;
    }
    .post table th,
    .post table td {
        padding: 8px 10px;
    }
}

@media screen and (max-width: 480px) {
    .post table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .post table th,
    .post table td {
        padding: 6px 8px;
    }
}
