.tooltip-inner {
    padding: 30px 15px;
}
.user-form legend {
    font-size: 1.2em;
}
.user-form label {
    font-size: 1em;
}
.subHeading {
    font-size: 1.2em;
}
input[type="text"], input[type="number"], input[type="email"], input[type="password"], input[type="date"], input[type="tel"] {
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}
input[type='radio'] {
    height: 30px;
    width: 30px;
    vertical-align: middle;
    margin: -1px 10px 0 5px;
}
input[type='submit'], button[type='submit'] {
    width: 100%;
    padding: 20px 0;
    margin: 20px 0;
}
.no-margin-bottom {
    margin-bottom: 0 !important;
}
.indentationDiv {
    margin-left: 30px;
}

/* MENU */

/* Make the hamburger 1.3× larger */
.navbar-toggler-humburger-icon .navbar-toggle-icon {
    transform: scale(1.3);
    transform-origin: left center; /* grow to the right, keeps left edge aligned */
}


.navbar-vertical .navbar-vertical-content .navbar-nav .nav .nav-link {
    font-size: 1.2rem !important;
}



input[type="range"]::-webkit-slider-thumb {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    border: 2px solid #007bff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -15px;
}
input[type="range"]::-moz-range-thumb {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    border: 2px solid #007bff;
    border-radius: 50%;
    cursor: pointer;
}
input[type="range"]::-ms-thumb {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    border: 2px solid #007bff;
    border-radius: 50%;
    cursor: pointer;
}
input[type="range"] {
    width: 100%;
    margin-top: 10px;
}
.sliderValue {
    font-size: 1.6em;
}
.sliderHelp {
    font-size: 1em;
}

.demandProfessions div.item {
    padding: 10px 0;
    /*border: 1px solid #000;*/
}

.accordion, .accordion-body {
    padding: 0 !important;
}

/** PLANNIG **/
table.planning {
    border-collapse: collapse;
}
.planning td {
    width: 90px;
    height: 80px;
    cursor: pointer; /* Change the cursor to a pointer to indicate it's clickable */
    text-align: center; /* Center the content (checkbox) */
    vertical-align: middle; /* Center the content vertically */
}
.planning td input[type="checkbox"] {
    width: 20px; /* Adjust checkbox size as needed */
    height: 20px; /* Adjust checkbox size as needed */
    display: none; /* Hide the checkbox */
}
.planning .form-check {
    padding: 0;
    margin: 0;
}
.weekTitle {
    font-weight: bold;
    font-size: 120%;
}
.weekTitleBig {
    color: #000;
}
.planning #message {
    margin-top: 10px;
    font-weight: bold;
}


/** RESPONSIVE TABLES */
@media only screen and (max-width: 1024px) {
    /* Force table to not be like tables anymore */
    .responsive-tables table,
    .responsive-tables thead,
    .responsive-tables tbody,
    .responsive-tables th,
    .responsive-tables td,
    .responsive-tables tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .responsive-tables thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
        vertical-align: middle;
    }

    .responsive-tables td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 40%;
        white-space: normal;
        text-align: left;
        vertical-align: middle;
        word-wrap: break-word;
    }

    .responsive-tables td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 1px;
        left: 6px;
        /*width: 55%;*/
        padding: 0 0 5px 5px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        word-wrap: break-word;
    }

    .responsive-tables td:last-child {
        border-bottom: 1px dotted #333;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .responsive-tables td:before { content: attr(data-title); }

    .responsive-tables-one-column td {
        padding-left: 1%;
    }

    .responsive-tables-one-column td:before {
        width: 1%;
    }

}

.report-week {
    color: red;
    font-size: 130%;
}

.reportRows {
    margin: 20px 0 0 0;
}

.sticky-column {
    position: sticky;
    left: 0;
    font-weight: bold !important;
    font-size: 100% !important;
    padding: 0 5px !important;
}



/* Lang */

.fx-lang-select {
    width: 90%;
    padding: 0.40rem 0.60rem;
    border-radius: 6px;
    border: 1px solid #383838;
    color: #f5f5f5;
    font-size: 0.90rem;
    line-height: 1.2;
    box-sizing: border-box;
    /* jedna řádka na výšku */
    height: 2.1rem;       	/* pevná výška = 1 řádek */
    appearance: none;     	/* natvrdo skryje nativní styl (Chrome/Firefox) */
    -webkit-appearance: none; /* Safari */
}

.fx-lang-select:focus {
    outline: none;
    border-color: #1f6feb;
    box-shadow: 0 0 0 1px #1f6feb33;
}

/* Trojúhelníček (šipka) – používá se kombinace Bootstrap + vlastní vzhled */
.fx-lang-select::-ms-expand {
    display: none; /* IE/Edge starší jádro */
}

/* Volitelné: lehký hover efekt na selectu */
.fx-lang-select:hover {
    border-color: #4a4a4a;
    background-color: #141414;
}

