:root {
    --primary-color: #570d21;
    --primary-dark: #380815;
    --primary-shadow: rgba(87, 13, 33, 0.2);
    --primary-focus-shadow: rgba(87, 13, 33, 0.25);
    --primary-accent-light: #ffcdd2;
    --secondary-color: #6c757d;
    --secondary-dark: #5a6268;
    --text-dark: #333;
    --text-dark-gray: #343a40;
    --text-medium-gray: #555;
    --text-light-gray: #f0f0f0;
    --text-light-gray-2: #888;
    --black: #000000;
    --white: #ffffff;
    --bg-app: #f9fbfd;
    --bg-light: #f8f9fa;
    --bg-lightest: #fdfdfd;
    --bg-readonly: #e9ecef;
    --border-color: #e0e0e0;
    --border-light-gray: #e9ecef;
    --border-light-gray-2: #dee2e6;
    --border-medium-gray: #ddd;
    --input-border: #ced4da;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --table-row-hover: #e2f0fe;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --modal-overlay-bg: rgba(0, 0, 0, 0.6);
    --mobile-overlay-bg: rgba(0, 0, 0, 0.5);
    --white-transparent-15: rgba(255, 255, 255, 0.15);
    --white-transparent-70: rgba(255, 255, 255, 0.7);
    --white-transparent-80: rgba(255, 255, 255, 0.8);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.app-container {
    display: flex;
    height: 100vh;
    background-color: var(--bg-app);
}

.sidebar {
    width: 280px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    flex-shrink: 0;
    box-shadow: 2px 0 8px var(--shadow-light);
    height: 100%;
    overflow-y: auto;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sidebar-header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white-transparent-15);
    position: relative;
}

.sidebar-header .header-main {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 10px;
    border-radius: 8px;
}

.sidebar-header img {
    width: 70px;
    height: 70px;
}

.sidebar-header .site-title {
    font-size: 1.9em;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-top: -7px;
    ;
    margin-left: -3px;
}

.sidebar-user {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--white-transparent-15);
    margin-bottom: 25px;
    font-size: 0.95em;
}

.sidebar-user i {
    margin-right: 8px;
    font-size: 1.4em;
}

.sidebar-user span {
    font-weight: 600;
    color: var(--text-light-gray);
    margin-right: auto;
}

.sidebar-user .logout-link {
    color: var(--white-transparent-70);
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.sidebar-user .login-link {
    color: var(--white-transparent-70);
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    margin: auto;
}

.sidebar-user .logout-link:hover,
.sidebar-user .login-link:hover {
    color: var(--white);
}

.main-nav {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.main-nav ul {
    list-style-type: none;
}

.main-nav li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--white-transparent-80);
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.main-nav li a i {
    margin-right: 12px;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

.main-nav li a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.main-nav li.active-menu-item a {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 5px var(--shadow-light);
    font-weight: 600;
}

.sidebar-footer {
    padding-top: 20px;
    border-top: 1px solid var(--white-transparent-15);
    text-align: center;
    font-size: 0.8em;
    opacity: 0.8;
    flex-shrink: 0;
    margin-top: auto;
}

.sidebar-footer .site-version {
    margin-bottom: 5px;
    color: var(--text-light-gray);
}

.sidebar-footer .exec-mode {
    color: var(--primary-accent-light);
    font-weight: 600;
}

.main-content {
    flex-grow: 1;
    padding: 30px;
    height: 100%;
    overflow-y: auto;
}

.content-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.content-card-header {
    background-color: var(--bg-light);
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.content-card-header h2 {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--text-dark-gray);
    margin: 0;
}

.content-card-body {
    padding: 25px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn i {
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 2px 8px var(--primary-shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

#procIA:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead th {
    background-color: var(--text-dark-gray);
    color: var(--white);
    padding: 12px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9em;
    border-bottom: 2px solid var(--border-medium-gray);
    white-space: nowrap;
}

.data-table thead tr:first-child th:first-child {
    border-top-left-radius: 8px;
}

.data-table thead tr:first-child th:last-child {
    border-top-right-radius: 8px;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--border-light-gray);
    transition: background-color 0.2s;
}

.data-table tbody tr:last-child {
    border-bottom: none;
}

.data-table tbody tr:nth-of-type(even) {
    background-color: var(--bg-light);
}

.data-table tbody tr:hover {
    background-color: var(--table-row-hover);
}

.data-table tbody td {
    padding: 12px 15px;
    font-size: 0.9em;
    text-align: center;
    vertical-align: middle;
}

.data-table .action-icon {
    color: var(--text-medium-gray);
    margin: 0 5px;
    font-size: 1.1em;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.data-table .action-icon:hover {
    color: var(--primary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 25px;
    align-items: flex-end;
}

.datetime-row,
.full-row {
    grid-column: 1 / -1;
}

.filter-btn-container {
    text-align: right;
    width: 100%;
}

.datetime-range-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    align-items: center;
}

.datetime-group {
    display: flex;
    gap: 8px;
    flex: 1;
    align-items: center;
}

.datetime-group input[type="date"] {
    flex: 1.5;
}

.datetime-group .input-wrapper {
    flex: 1;
    min-width: 110px;
    position: relative;
}

.input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #838383;
    pointer-events: none;
    font-size: 0.9em;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: transparent;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.9em;
    font-weight: 500;
    color: var(--text-medium-gray);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 0.95em;
    color: var(--text-dark-gray);
    background-color: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    z-index: 1;
}

.datetime-range-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
}

.datetime-group {
    display: flex;
    gap: 5px;
    flex: 1;
}

.datetime-group input[type="date"] {
    flex: 2;
}

.datetime-group .input-wrapper {
    flex: 1.5;
    min-width: 100px;
}

.range-to {
    font-size: 0.9em;
    color: var(--text-medium-gray);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 10px;
    color: #838383;
    pointer-events: none;
    font-size: 0.9em;
}

.input-wrapper input[type="time"] {
    padding-right: 30px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-focus-shadow);
}

.form-group input[readonly] {
    background-color: var(--bg-readonly);
    cursor: not-allowed;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    border-top: 1px solid var(--border-light-gray);
    padding-top: 20px;
    gap: 20px;
}

.status-container {
    display: flex;
    align-items: center;
}

.status-label {
    font-size: 0.9em;
    color: var(--text-medium-gray);
    font-weight: 600;
    margin-right: 5px;
}

.status-control-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 3px 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 40px;
}

.error-message {
    color: var(--danger-color);
    font-weight: 500;
    font-size: 0.9em;
}

.status-icon {
    font-size: 0.9em;
}

.status-icon.active {
    color: var(--success-color);
}

.status-icon.inactive {
    color: var(--danger-color);
}

.login-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.login-page-container .content-card {
    width: 100%;
    max-width: 450px;
    margin-bottom: 0;
}

.recuperar_senha {
    font-size: 0.9em;
    color: var(--text-medium-gray);
    text-decoration: none;
}

.recuperar_senha:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.chart-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: var(--text-medium-gray);
}

.legend-color {
    display: inline-block;
    width: 20px;
    height: 10px;
    border-radius: 5px;
    margin-right: 8px;
}

.password-rules-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
}

.password-rules-card h4 {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark-gray);
    margin-bottom: 10px;
}

.password-rules-card ul {
    list-style: none;
    padding-left: 0;
}

.password-rules-card ul li {
    display: flex;
    align-items: center;
    font-size: 0.85em;
    color: var(--text-medium-gray);
    margin-bottom: 5px;
}

.password-rules-card ul li i {
    margin-right: 8px;
}

.password-rules-card ul li.invalid {
    color: var(--text-medium-gray);
}

.password-rules-card ul li.invalid i {
    color: var(--danger-color);
}

.password-rules-card ul li.valid {
    color: var(--success-color);
    font-weight: 500;
}

.password-rules-card ul li.valid i {
    color: var(--success-color);
}

.permissions-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-top: 20px;
}

.permissions-title {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-dark-gray);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px 25px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    font-size: 0.9em;
    color: var(--text-medium-gray);
    margin-left: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 1.1em;
    height: 1.1em;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px 25px;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-light-gray);
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--text-medium-gray);
    margin-bottom: 2px;
}

.info-data {
    font-size: 0.95em;
    color: var(--text-dark);
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.text-muted {
    color: #6c757d;
}

.fw-bold {
    font-weight: bold;
}

.btn-power {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-size: 0.8em;
}

.btn-power.online {
    background-color: var(--danger-color);
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.3);
}

.btn-power.offline {
    background-color: var(--secondary-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-power:hover:not(:disabled) {
    filter: brightness(1.1);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-online {
    background-color: var(--success-color);
    box-shadow: 0 0 5px var(--success-color);
}

.dot-offline {
    background-color: var(--danger-color);
}

.text-online {
    color: var(--success-color);
    font-weight: 700;
}

.text-offline {
    color: var(--danger-color);
    font-weight: 700;
}

.status-control-wrapper span {
    white-space: nowrap;
}

.conditional-section {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light-gray-2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.conditional-title {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-dark-gray);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light-gray-2);
}

.result-summary-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
}

.result-status {
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.status-badge.green {
    background-color: var(--success-color);
}

.status-badge.yellow {
    background-color: var(--warning-color);
    color: var(--text-dark);
}

.status-badge.red {
    background-color: var(--danger-color);
}

.status-message {
    font-size: 0.9em;
    color: var(--text-medium-gray);
    font-weight: 500;
}

.result-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-items: center;
}

.result-details span {
    font-size: 0.9em;
    color: var(--text-dark);
}

.tolerance-indicator.red {
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--danger-color);
    border-radius: 50%;
    margin: auto;
}

.action-buttons-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.modal-overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--modal-overlay-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px var(--shadow-medium);
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    max-height: 95vh;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.3em;
    color: var(--text-dark-gray);
}

.close-button {
    background: none;
    border: none;
    font-size: 2em;
    font-weight: 300;
    color: var(--text-light-gray-2);
    cursor: pointer;
    line-height: 1;
}

.close-button:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.setup-level-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.level-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    background-color: var(--bg-lightest);
}

.level-card strong {
    display: block;
    margin-bottom: 15px;
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark-gray);
}

.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
}

.sidebar-toggle-button {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 1.4em;
    cursor: pointer;
    box-shadow: 0 2px 5px var(--shadow-medium);
    line-height: 1;
    z-index: 1100;
}

.sidebar-toggle-button:hover {
    color: var(--white);
}

.sidebar-close-button {
    display: none;
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white-transparent-70);
    font-size: 2em;
    cursor: pointer;
    line-height: 1;
    z-index: 1101;
}

.sidebar-close-button:hover {
    color: var(--white);
}

.info-data-field {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.95em;
    color: var(--text-dark-gray);
    display: flex;
    align-items: center;
    cursor: default;
}

.info-data-field .fw-bold {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .sidebar-toggle-button {
        display: block;
    }

    .app-container {
        display: block;
        padding-top: 0;
        position: relative;
    }

    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        border-right: none;
        width: 280px;
        display: flex;
        flex-direction: column;
        padding-top: 50px;
    }

    .sidebar-close-button {
        display: block;
    }

    .sidebar-header {
        margin-top: 10px;
    }

    .app-container.sidebar-open .sidebar {
        transform: translateX(0);
    }

    .app-container.sidebar-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background-color: var(--mobile-overlay-bg);
        z-index: 1040;
    }

    .main-content {
        width: 100%;
        min-height: 100vh;
        padding: 70px 15px 30px 15px;
        overflow-y: auto;
    }

    .sidebar-footer {
        margin-top: auto;
    }

    .data-table tbody td:last-child {
        white-space: nowrap !important;
        min-width: 150px;
        text-align: center;
    }

    .data-table td:last-child .action-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 8px;
        margin: 0 4px;
        font-size: 1.1em;
        vertical-align: middle;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 70px 15px 20px 15px;
    }

    .content-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .content-card-header h2 {
        font-size: 1.2em;
    }

    .content-card-body .btn,
    .modal-footer .btn {
        width: 100%;
        margin-top: 10px;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .form-group[style*="grid-column"] {
        grid-column: auto !important;
    }

    .result-summary-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .result-action {
        text-align: center;
    }

    .modal-content {
        max-height: 85vh;
    }

    .info-grid {
        grid-template-columns: 1fr;

    }

    .setup-level-cards {
        grid-template-columns: 1fr;
    }

    .content-card-body>div[style*="display: flex"]>.btn {
        width: 100%;
        margin-top: 10px;
    }

    .content-card-body .form-grid .form-group:has(> .btn) {
        text-align: center;
    }

    .data-table tbody td:has(.action-icon),
    .data-table tbody td:last-child {
        white-space: nowrap;
        text-align: center;
    }

    .data-table .action-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        margin: 0 3px;
        font-size: 1.1em;
        vertical-align: middle;
    }

    .datetime-range-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .datetime-group {
        width: 100%;
    }

    .range-to {
        text-align: center;
    }

    .filter-btn-container {
        grid-column: auto;
        text-align: center;
        margin-top: 10px;
    }

    .filter-btn-container .btn {
        width: 100%;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .status-container {
        justify-content: center;
    }

    .status-control-wrapper {
        width: 100%;
        justify-content: center;
    }

    .btn-save {
        width: 100%;
    }

    .info-data-field {
        justify-content: center;
    }
}