/** CordeoCRM merkezi sayfa iskeleti 24.5.4 */
html body.ccrm-app :is(.ccrm-ui-page, .ccrm-page-system) {
    box-sizing: border-box;
    width: min(var(--ccrm-page-width, 1180px), calc(100% - 32px));
    max-width: var(--ccrm-page-width, 1180px);
    min-width: 0;
    margin: 0 auto;
    padding: 28px 0 48px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ccrm-text, #202a36);
    font-family: var(--ccrm-font, Inter, "Segoe UI", Arial, sans-serif);
}

html body.ccrm-app :is(.ccrm-ui-page__header, .ccrm-page-system__header) {
    display: flex;
    min-height: 92px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin: 0;
    padding: 18px 0 14px;
    border: 0;
    border-bottom: 1px solid var(--ccrm-border, #e2e7ed);
    background: transparent;
    box-shadow: none;
}

html body.ccrm-app .ccrm-ui-page__title,
html body.ccrm-app :is(.ccrm-ui-page__header, .ccrm-page-system__header) > div:first-child {
    min-width: 0;
    flex: 1 1 auto;
}

html body.ccrm-app :is(.ccrm-ui-page__header, .ccrm-page-system__header) h1 {
    margin: 0 0 5px;
    color: var(--ccrm-text, #202a36);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
}

html body.ccrm-app :is(.ccrm-ui-page__header, .ccrm-page-system__header) p {
    margin: 0;
    color: var(--ccrm-muted, #6f7a88);
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.5;
}

html body.ccrm-app :is(.ccrm-ui-page__actions, .ccrm-page-system__actions) {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 0;
}

html body.ccrm-app .ccrm-ui-page__body {
    min-width: 0;
}

@media (max-width: 767px) {
    html body.ccrm-app :is(.ccrm-ui-page, .ccrm-page-system) {
        width: calc(100% - 24px);
        padding: 22px 0 48px;
    }
    html body.ccrm-app :is(.ccrm-ui-page__header, .ccrm-page-system__header) {
        min-height: 0;
        flex-direction: column;
        gap: 14px;
    }
    html body.ccrm-app :is(.ccrm-ui-page__actions, .ccrm-page-system__actions) {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
