.cyber-app-content-container {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.cyber-app-content-header-buttons {
    margin-bottom: 3px !important;
}

.cyber-app-content-layout {
    min-height: 30px;
}

.cyber-app-content-layout-element {
    min-height: 30px;
    min-width: 1px;
    margin-top: 10px;
}

.cyber-app-content-layout-title {
    font-size: 30px;
    font-weight: 400;
    margin-left: 20px;
    font-weight: bold;
}

.cyber-app-content-title {
    font-size: 20px;
    color: var(--oj-brand-color-dark2);
    border-bottom: solid 3px var(--meet-border);
    width: calc(100% - 30px);
    height: 30px;
    margin-left: 20px;
}

.cyber-app-content-subtitle {
    font-size: 13px;
    color: #4b5563;
    width: calc(100% - 40px);
    min-height: 15px;
    text-align: start;
    margin-top: 8px;
    margin-left: 20px;
    margin-bottom: 20px;
    line-height: 1.35;
}

.cyber-app-content-body {
    margin-top: 10px;
    margin-left: 20px;
}

.cyber-app-content-cards-layout {
    padding: 0 10px 15px 20px;
    box-sizing: border-box;
    width: 100% !important;
}

.cyber-app-content-card-slot {
    width: 100%;
}

.cyber-app-content-card {
    width: 100%;
    min-height: 88px;
    border-radius: 9px;
    border: solid 1px var(--meet-border);
    background: var(--oj-brand-color-light3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 12px 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;

    transition: transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.cyber-app-content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.10);
    border-color: #d4d4d4;
}

.cyber-app-content-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cyber-app-content-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.cyber-app-content-card-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--oj-core-text-color-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cyber-app-content-card-value {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--oj-brand-color);
}

.cyber-app-note {
    gap: 7px;
    font-size: 12px;
    color: #526173;
    background: rgba(43, 86, 137, 0.06);
    border-left: solid 3px var(--oj-brand-color);
    border-radius: 4px;
    padding: 9px 10px;
    margin-top: 10px;
    margin-bottom: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* */
.cyber-app-note-info {
    background: rgba(43, 86, 137, 0.06);
    border-left: solid 3px var(--oj-brand-color);
}

.cyber-app-note-info .cyber-app-note-icon {
    color: var(--oj-brand-color);
}

.cyber-app-note-warning {
    background: rgba(245, 158, 11, 0.10);
    border-left: solid 3px #F59E0B;
}

.cyber-app-note-warning .cyber-app-note-icon {
    color: #F59E0B;
}

.cyber-app-note-danger {
    background: rgba(220, 38, 38, 0.08);
    border-left: solid 3px #DC2626;
}

.cyber-app-note-danger .cyber-app-note-icon {
    color: #DC2626;
}


    .cyber-app-note-text {
        flex: 1;
        min-width: 0;
        display: block;
        line-height: 17px;
    }

    .cyber-app-note strong {
        color: #1D334A;
    }