/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.0.1758246379
Updated: 2025-09-19 08:46:19

*/

.toto-table-wrapper {
    margin: 20px 0;
}

.toto-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #000; /* Black text */
}

.toto-table th,
.toto-table td {
    border: 1px solid #000; /* Black borders */
    padding: 12px;
    text-align: left;
    color: #000; /* Black text */
}

.toto-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #000; /* Black text for headers */
}

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

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

.toto-pagination-info {
    margin-bottom: 10px;
    color: #000; /* Black text for pagination info */
}

.toto-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.toto-page-btn {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #000; /* Black border for buttons */
    background-color: #fff;
    color: #000; /* Black text for buttons */
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toto-page-btn:hover {
    background-color: #f0f0f0;
    text-decoration: none;
    color: #000; /* Keep black text on hover */
}

.toto-page-btn.current {
    background-color: #007cba;
    color: white;
    border-color: #000; /* Black border for current page */
}

.toto-page-dots {
    padding: 8px 4px;
    color: #000; /* Black text for dots */
}

@media (max-width: 768px) {
    .toto-table {
        font-size: 14px;
    }
    
    .toto-table th,
    .toto-table td {
        padding: 8px;
    }
    
    .toto-pagination {
        flex-wrap: wrap;
    }
    
    .toto-page-btn {
        padding: 6px 10px;
        font-size: 14px;
    }
}

.toto-table-wrapper {
    width: 100%;
    max-width: 800px; /* Set consistent max width */
    margin: 20px auto; /* Center the table */
    overflow-x: auto; /* Handle mobile responsiveness */
}

.toto-table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 20px 0;
    color: #000;
    table-layout: fixed; /* Force consistent column widths */
}

.toto-table th,
.toto-table td {
    border: 1px solid #000;
    padding: 12px;
    text-align: left;
    color: #000;
    word-wrap: break-word; /* Handle long content */
}

/* Set specific column widths */
.toto-table th:nth-child(1),
.toto-table td:nth-child(1) {
    width: 20%; /* Periode column */
}

.toto-table th:nth-child(2),
.toto-table td:nth-child(2) {
    width: 50%; /* Tanggal column */
}

.toto-table th:nth-child(3),
.toto-table td:nth-child(3) {
    width: 30%; /* Angka column */
}