

/* Start:/local/templates/cadet/template_styles.css?17426480332221*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    font-size: 12px;
}
.container {
    padding: 0 20px;
    background-color: #f9f9f9;
}
h1 {
    text-align: center;
    font-size: 22px;
    margin: 5px
}
.tables-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.table-container {
    flex: 1 1 calc(20% - 20px);
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.table-container h2 {
    background-color: #e6f7ff;
    margin: 0;
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}
.grid-table {
    display: grid;
    grid-template-columns: 1fr;
    background-color: #ddd;
}
.row {
    display: grid;
    grid-template-columns: 1fr 50px;
    background-color: white;
}
.row:hover {
    background-color: #f0f8ff;
}
.row > div {
    padding: 5px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.row:hover .action-button {
    opacity: 1;
}
.header {
    background-color: #f4f4f4;
    font-weight: bold;
}
.action-button {
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
    opacity: 0;
}

.action-button_active {
    opacity: 1;
    display: inline-block;
}

.delete-button {
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    margin-left: 10px;
}
.delete-button:hover {
    background-color: #cc0000;
}

@media (max-width: 768px) {
    .table-container {
        flex: 1 1 100%;
    }
    .row {
        /*grid-template-columns: 1fr;*/
    }
    .header {
        display: none;
    }
}

@media print {
    .row > div {
        padding: 1px 0;
    }

    a {
        color: #000;
        text-decoration: none;
    }
    .print {
        display: none;
    }
}
/* End */
/* /local/templates/cadet/template_styles.css?17426480332221 */
