﻿    body.call-detail-log-no-page-scroll {
        overflow: hidden !important;
    }

    .call-detail-page-wrap {
        height: var(--call-detail-page-height, calc(100vh - 320px));
        min-height: 250px;
        display: flex;
        flex-direction: column;
    }

    .call-detail-grid-wrap {
        flex: 1 1 auto;
        min-height: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-gutter: auto;
    }

    .call-detail-grid-wrap .call-detail-grid {
        height: 100%;
    }

    .call-detail-actions {
        flex: 0 0 auto;
        padding-top: .75rem;
        padding-bottom: .25rem;
    }

    .call-detail-header-wrap {
        position: relative;
    }

    .call-detail-back-btn {
        position: absolute;
        top: -44px;
        left: -6px;
        z-index: 2;
        min-width: 44px;
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        color: #111;
        text-decoration: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        cursor: pointer;
    }

    .call-detail-back-btn .oi {
        font-size: 28px;
        margin-left: -3px;
    }

    .call-detail-back-btn:hover,
    .call-detail-back-btn:focus {
        text-decoration: underline;
        color: #000;
        background: transparent;
        outline: none;
    }

    @media (max-width: 767.98px) {
        .call-detail-header-wrap.edge-mobile-surface {
            margin-left: 0;
            margin-right: 0;
            padding-left: calc(var(--app-main-mobile-inline-padding, .5rem) * .5);
            padding-right: var(--app-main-mobile-inline-padding, .5rem);
            padding-top: 0;
            box-sizing: border-box;
        }

        .call-detail-title-row {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            margin-bottom: .2rem;
        }

        .call-detail-title {
            margin-bottom: 0 !important;
            margin-top: 0 !important;
            line-height: 1.2;
        }

        .call-detail-back-btn {
            position: static;
            min-width: 0;
            width: auto;
            height: auto;
            padding: 0;
            line-height: 1;
        }

        .call-detail-back-btn .oi {
            font-size: 42px;
            margin-left: 0;
            margin-right: .1rem;
        }
    }

