
.no-wrap {
    white-space: nowrap;
}
.editable {
    display: inline-block;
    min-width: 100px;  /* Nastavte minimální šířku podle potřeby */
}
.edit-input {
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    font-size: inherit;
    font-family: inherit;
}
.depinfo-label {
    display: flex;
    align-items: center;
}
.depinfo-label input {
    margin-right: 5px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.custom-table .thead-custom {
    background-color: #003366 !important; /* Zde si můžete vybrat jakoukoliv barvu */
    color: white; /* Barva textu v hlavičce */
}
.highlight-yellow {
    background-color: #ffffcc;
}
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}
.toast.show {
    opacity: 1;
}
.operation-number {
    word-break: break-word;
    white-space: normal;
    max-width: 150px; /* Upravte podle potřeby */
}
#mtsModal .modal-dialog {
    max-width: 80%; /* nebo jakákoliv jiná hodnota */
    width: 900px; /* nebo jakákoliv jiná pevná šířka */
}
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 20px;
}

.contact-list {
    list-style-type: none;
    padding: 0;
}
body, html {
height: 100%;
margin: 0;
padding: 0;
}
.bg-container {
background-image: url("/static/images/dynamix_foto.webp");
height: 100vh;
width: 100vw;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
.content {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.content h1 {
font-size: 5em;
text-align: center;
color: white;
background-color: rgba(0, 159, 227, 0.5); /* CK Čedok barva s 50% průhledností */
padding: 20px 40px;
border-radius: 50px; /* Vytvoří oválný tvar */
display: inline-block;
}
.navbar-brand {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.navbar-brand .brand-name {
    font-size: 1.25rem;  /* Nebo jakoukoli velikost, kterou preferujete */
}

.navbar-brand .version {
    font-size: 0.6em;
    color: #6c757d;
}