body {
    font-family: "Open Sans", sans-serif !important;
}

#footer {
    position: sticky;
    background-color: white;
    color: white;
    text-align: center;
    padding: 1em;
    bottom: 0;
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}
.bi {
    display: inline-block;
    width: 1rem;
    height: 1rem;
}

table.dataTable td,
table.dataTable th {
    white-space: normal !important;
    word-wrap: break-word;
    vertical-align: top;
    padding: 8px;
}

table.dataTable td span,
table.dataTable th span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

table.dataTable td span:hover,
table.dataTable th span:hover {
    white-space: normal;
    position: relative;
    z-index: 1000;
    background-color: #fff;
}

table.dataTable thead th, table#jotformUrlsTable thead th {
    background-color: #f8f9fa;
    font-weight: bold;
}

table.dataTable tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

table.dataTable tbody tr:hover {
    background-color: #e9ecef;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.info-item:hover {
    background-color: #e9ecef;
}

.info-label {
    font-weight: bold;
    color: #495057;
    margin-bottom: 5px;
}

.info-value {
    color: #212529;
    word-break: break-word;
}

.section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #0d6efd;
    color: #0d6efd;
}

table.dataTable td.details-control {
    padding: 0;
}

table.dataTable td.details-control div {
    padding: 8px;
    max-height: 200px;
    overflow-y: auto;
}

table.dataTable td.details-control {
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}