/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.pajskr.cz
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

.sapelipointbtn {
    cursor: default !important;
    pointer-events: none;
}

.nopointer > a {
    pointer-events: none;
    cursor: default;
}



/* Jednoduchá krásná tabulka */
.wp-block-table table,
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

/* Řádky */
.wp-block-table tr,
table tr {
    border-bottom: 1px solid #f0f0f0;
}

.wp-block-table tr:last-child,
table tr:last-child {
    border-bottom: none;
}

/* Buňky */
.wp-block-table td,
table td {
    padding: 12px 16px;
    border: none;
    vertical-align: top;
    font-size: 16px;
}

/* První sloupec */
.wp-block-table td:first-child,
table td:first-child {
    background: #fafafa;
    font-weight: 500;

    width: 40%;
}

/* Druhý sloupec */
.wp-block-table td:last-child,
table td:last-child {
    color: #333;
}

/* Hover efekt */
.wp-block-table tr:hover,
table tr:hover {
    background: #f8f8f8;
}