body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    padding: 0;
    display: flex;
    height: 100vh;
    flex-direction: column;
}

header {
    height: 40px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 400px
}

.logo {
    width: 120px;
}

.user-info-header {
    display: flex;
    align-items: center;
}

.balance {
    margin-right: 20px;
    font-size: 16px;
    color: #333333;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333333;
}

h2,
h3 {
    margin-top: 0;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333333;
}

input[type="email"],
input[type="text"],
input[type="password"],
textarea {
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 16px;
}

textarea {
    margin-bottom: 0;
}

button {
    padding: 10px 20px;
    background-color: #4296e3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background-color: #3485d1;
}

.button-secondary {
    padding: 10px 20px;
    color: #374151;
    background-color: transparent;
    border: 1px solid #e2e8f0;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-secondary:hover {
    background-color: #f3f4f6;
}

#resend_code_timer,
#resend_code {
    margin-top: 16px;
}

#resend_code {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #4296e3;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#resend_code:hover {
    background-color: #3485d1;
}

.error {
    color: #ff0000;
    font-size: 14px;
    margin-top: 8px;
}

.success {
    color: #008000;
    font-size: 14px;
    margin-top: 8px;
}

.info {
    color: #2563eb;
    font-size: 14px;
    margin-top: 8px;
}

.container {
    display: flex;
    flex-grow: 1;
    height: 100%;
}

.dashboard {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.sidebar-wrapper {
    width: 240px;
    background-color: #f5f5f5;
    overflow-y: auto;
}

.sidebar {
    padding: 30px 15px;
}

.sidebar-title {
    display: block;
    padding: 0;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #c0c0c0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-link {
    display: block;
    padding: 8px 15px;
    margin-bottom: 10px;
    color: #707070;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: background 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-link:not(.active):hover {
    background: #e0e0e0;
}

.sidebar-link.active {
    color: #000;
    background: #eaeaea;
    font-weight: 600;
    pointer-events: none;
}

.content-wrapper {
    flex: 1;
    overflow-y: auto;
}

.content {
    padding: 30px 15px;
}

.content-item {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-item label {
    display: block;
    margin-bottom: 5px;
}

.content-item textarea,
.content-item input[type="datetime-local"] {
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.content-item button {
    padding: 10px 10px;
    background-color: #4296e3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 100%;
}

.content-item button:hover {
    background-color: #3485d1;
}

.content-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content-col-wide,
.content-col-narrow {
    width: 100%;
}

.content-item>*:not(:last-child) {
    margin-bottom: 15px;
}

.content-item>*:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .content-row {
        flex-direction: row;
        justify-content: flex-start;
    }

    .content-col-wide {
        flex: 2;
        margin-right: 20px;
    }

    .content-col-narrow {
        flex: 1;
    }
}

.content-item table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.content-item table thead {
    background-color: #f9fafb;
}

.content-item table thead tr th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-top-width: 1px;
    border-top-style: solid;
    border-color: #e2e8f0;
    cursor: pointer;
}

.content-item table thead tr th:last-child {
    /*text-align: right;*/
}

.content-item table tbody tr:hover {
    background-color: #f0f0f0;
}

.content-item table tbody tr:last-child td {
    border-bottom: none;
}

.content-item table tbody tr td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #1f2937;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #e2e8f0;
    word-break: break-word;
}

.content-item table tbody tr td:last-child {
    /*text-align: right;*/
}

.content-item table .colspan-2 {
    text-align: center;
}

.content-item table tbody tr td a {
    color: #2196f3;
    text-decoration: none;
}

.content-item table tbody tr td a:hover {
    color: #0c7cd5;
    text-decoration: underline;
}

.card {
    position: relative;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    color: #707070;
    font-size: 1rem;
    font-weight: 500;
}

.card-text-current {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}

.card-text-prev {
    color: #707070;
    font-size: 0.7rem;
    line-height: 1.25rem;
    font-weight: 400;
    margin: 5px 0 15px 0;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #707070;
    font-size: 0.7rem;
    font-weight: 400;
    margin: 5px 0 0 0;
}

.card-bottom-left {
    text-align: left;
}

.card-bottom-right {
    text-align: right;
}

.text-break {
    word-break: break-word;
}

#schedule_broadcast {
    width: 100%;
}

.table-container {
    margin: 0;
}

.table-container table {
    width: 100%;
}

#selected_users_list {
    padding-left: 20px;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar-wrapper {
        width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .sidebar {
        display: flex;
        padding: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .sidebar::-webkit-scrollbar {
        display: none;
    }

    .sidebar-link {
        display: inline-block;
        margin-right: 10px;
        padding: 10px;
        flex-shrink: 0;
    }

    .content {
        padding: 15px;
    }
}

.date-filter-form {
    display: flex;
    justify-content: center;
}

.date-filter-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.date-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.date-input {
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.date-separator {
    color: #6b7280;
}

.interval-select {
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    width: 160px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.filter-button {
    padding: 10px 20px;
    background-color: #4296e3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-button:hover {
    background-color: #3485d1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1rem;
    margin-left: 10px;
    white-space: nowrap;
}

.badge-gray {
    background-color: #f3f4f6;
    color: #1f2937;
}

.badge-red {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-yellow {
    background-color: #fef9c3;
    color: #854d0e;
}

.badge-green {
    background-color: #dcfce7;
    color: #166534;
}

.badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-indigo {
    background-color: #e0e7ff;
    color: #3730a3;
}

.badge-purple {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.badge-red-nobg {
    background: none;
    color: #991b1b;
}

.badge-green-nobg {
    background: none;
    color: #166534;
}

.badge-gray-nobg {
    background: none;
    color: #1f2937;
}

.badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-size: contain;
}

.badge-icon-up {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23115e59" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 7 13.5 15.5 8.5 10.5 2 17"></polyline><polyline points="16 7 22 7 22 13"></polyline></svg>');
}

.badge-icon-down {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23991b1b" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 17 13.5 8.5 8.5 13.5 2 7"></polyline><polyline points="16 17 22 17 22 11"></polyline></svg>');
}

.badge-na {
    background-color: #f3f4f6;
    color: #1f2937;
}

.badge-na-nobg {
    background: none;
    color: #1f2937;
}

.badge-na .badge-icon {
    display: none;
}

.card-spinner-container {
    display: flex;
    align-items: center;
    height: 120px;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.card-line-chart {
    margin-left: -8px;
}

.card-body> :last-child {
    margin-bottom: 0;
}

.card-table {
    width: 100%;
    border-collapse: collapse;
}

.card-table th,
.card-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}


.card-table th {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #4b5563;
    background-color: #f9fafb;
    white-space: nowrap;
}

.card-table .sort-btn {
    display: inline-block;
    vertical-align: middle;
}

.card-table td {
    font-size: 0.875rem;
    color: #1f2937;
}

.card-table tbody tr {
    cursor: pointer;
}

.card-table tbody tr:last-child td {
    border-bottom: none;
}

.card-table tbody tr:hover {
    background-color: #f3f4f6;
}

.card-table .operator {
    font-weight: 600;
}

.card-table .value {
    text-align: right;
    padding-right: 0;
}

.card-table .badge-cell {
    text-align: left;
    padding-left: 0.5rem;
}

.card-table .current-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-table .prev-value {
    font-size: 0.875rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.card-table .badge {
    margin-left: 0.5rem;
}

.card-table .sort-btn {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 20px;
    background-color: transparent;
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    cursor: pointer;
    margin: 0;
    outline: none;
    padding: 0;
    margin-left: 4px;
}

.card-table .gridjs-sort-neutral {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDEuOTk4IiBoZWlnaHQ9IjQwMS45OTgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQwMS45OTggNDAxLjk5OCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTczLjA5MiAxNjQuNDUyaDI1NS44MTNjNC45NDkgMCA5LjIzMy0xLjgwNyAxMi44NDgtNS40MjQgMy42MTMtMy42MTYgNS40MjctNy44OTggNS40MjctMTIuODQ3cy0xLjgxMy05LjIyOS01LjQyNy0xMi44NUwyMTMuODQ2IDUuNDI0QzIxMC4yMzIgMS44MTIgMjA1Ljk1MSAwIDIwMC45OTkgMHMtOS4yMzMgMS44MTItMTIuODUgNS40MjRMNjAuMjQyIDEzMy4zMzFjLTMuNjE3IDMuNjE3LTUuNDI0IDcuOTAxLTUuNDI0IDEyLjg1IDAgNC45NDggMS44MDcgOS4yMzEgNS40MjQgMTIuODQ3IDMuNjIxIDMuNjE3IDcuOTAyIDUuNDI0IDEyLjg1IDUuNDI0ek0zMjguOTA1IDIzNy41NDlINzMuMDkyYy00Ljk1MiAwLTkuMjMzIDEuODA4LTEyLjg1IDUuNDIxLTMuNjE3IDMuNjE3LTUuNDI0IDcuODk4LTUuNDI0IDEyLjg0N3MxLjgwNyA5LjIzMyA1LjQyNCAxMi44NDhMMTg4LjE0OSAzOTYuNTdjMy42MjEgMy42MTcgNy45MDIgNS40MjggMTIuODUgNS40MjhzOS4yMzMtMS44MTEgMTIuODQ3LTUuNDI4bDEyNy45MDctMTI3LjkwNmMzLjYxMy0zLjYxNCA1LjQyNy03Ljg5OCA1LjQyNy0xMi44NDggMC00Ljk0OC0xLjgxMy05LjIyOS01LjQyNy0xMi44NDctMy42MTQtMy42MTYtNy44OTktNS40Mi0xMi44NDgtNS40MnoiLz48L3N2Zz4=");
    background-position-y: center;
    opacity: .3;
}

.card-table .gridjs-sort-asc {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIuMzYyIiBoZWlnaHQ9IjI5Mi4zNjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI5Mi4zNjIgMjkyLjM2MSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTI4Ni45MzUgMTk3LjI4NyAxNTkuMDI4IDY5LjM4MWMtMy42MTMtMy42MTctNy44OTUtNS40MjQtMTIuODQ3LTUuNDI0cy05LjIzMyAxLjgwNy0xMi44NSA1LjQyNEw1LjQyNCAxOTcuMjg3QzEuODA3IDIwMC45MDQgMCAyMDUuMTg2IDAgMjEwLjEzNHMxLjgwNyA5LjIzMyA1LjQyNCAxMi44NDdjMy42MjEgMy42MTcgNy45MDIgNS40MjUgMTIuODUgNS40MjVoMjU1LjgxM2M0Ljk0OSAwIDkuMjMzLTEuODA4IDEyLjg0OC01LjQyNSAzLjYxMy0zLjYxMyA1LjQyNy03Ljg5OCA1LjQyNy0xMi44NDdzLTEuODE0LTkuMjMtNS40MjctMTIuODQ3eiIvPjwvc3ZnPg==");
    background-position-y: 35%;
    background-size: 7px;
}

.card-table .gridjs-sort-desc {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIuMzYyIiBoZWlnaHQ9IjI5Mi4zNjIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI5Mi4zNjIgMjkyLjM2MiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTI4Ni45MzUgNjkuMzc3Yy0zLjYxNC0zLjYxNy03Ljg5OC01LjQyNC0xMi44NDgtNS40MjRIMTguMjc0Yy00Ljk1MiAwLTkuMjMzIDEuODA3LTEyLjg1IDUuNDI0QzEuODA3IDcyLjk5OCAwIDc3LjI3OSAwIDgyLjIyOGMwIDQuOTQ4IDEuODA3IDkuMjI5IDUuNDI0IDEyLjg0N2wxMjcuOTA3IDEyNy45MDdjMy42MjEgMy42MTcgNy45MDIgNS40MjggMTIuODUgNS40MjhzOS4yMzMtMS44MTEgMTIuODQ3LTUuNDI4TDI4Ni45MzUgOTUuMDc0YzMuNjEzLTMuNjE3IDUuNDI3LTcuODk4IDUuNDI3LTEyLjg0NyAwLTQuOTQ4LTEuODE0LTkuMjI5LTUuNDI3LTEyLjg1eiIvPjwvc3ZnPg==");
    background-position-y: 65%;
    background-size: 7px;
}

.table-container {
    margin: 15px 0 0 0;
    position: relative;
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px;
    border-style: solid;
    border-color: #e2e8f0;
    border-radius: 0.5rem;
}

.table-search {
    padding: 0;
}

.search-input-container {
    position: relative;
    display: inline-block;
}

.search-input {
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    font-family: 'Open Sans', Arial, sans-serif;
    padding-left: 35px !important;
    margin: 0 !important;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    fill: #a0aec0;
    pointer-events: none;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
}

.table-content {
    overflow: auto;
}

.table-filter {
    position: relative;
    display: inline-block;
}

.table-filter-button {
    display: inline-flex;
    align-items: center;
    color: #374151 !important;
    background-color: #ffffff !important;
    border: 1px solid #dddddd !important;
    cursor: pointer;
}

.table-filter-button:hover {
    background-color: #f3f4f6 !important;
}

.filter-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: #9ca3af;
}

.dropdown-icon {
    width: 0.625rem;
    height: 0.625rem;
    margin-left: 1rem;
    color: #9ca3af;
}

.table-filter-wrapper {
    position: relative;
    display: inline-block;
}

.table-filter-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    width: 13rem;
    min-width: 120px;
    padding: 0.5rem;
    margin-top: 0.125rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: margin 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.table-filter-options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table-filter-option {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: #1f2937;
    cursor: pointer;
}

.table-filter-option:hover {
    background-color: #f3f4f6;
}

.table-filter-checkbox {
    flex-shrink: 0;
    border-radius: 0.25rem;
}

.table-filter-checkbox:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat
}

.table-filter-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-left: 0.35rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-wide {
    max-width: none !important;
}

.call-info {
    font-size: 0.9rem;
    color: #6b7280;
}

.modal-content {
    max-width: 500px;
    width: 100%;
    margin: 15% auto;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    flex-direction: column;
    flex-wrap: wrap;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a202c;
}

.modal-close {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    color: #718096;
    cursor: pointer;
}

.modal-body {
    padding: 1rem;
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
}

.icon_edit {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    fill: currentColor;
    vertical-align: middle;
    margin-top: -5px;
}

.ws-nw {
    white-space: nowrap;
}

.flex-row-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
    .flex-row-container {
        flex-direction: column;
    }
}
