
/* SENSOY24 Update 51 */

.application-stats-hero {
    padding: 45px 0;
    border-bottom: 1px solid var(--line);
    background: #f7f8fa;
}

.application-stats-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.application-stats-hero h1 {
    margin: 5px 0 8px;
}

.application-stats-hero p {
    margin: 0;
    color: #65717c;
}

.application-stats-hero-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.stats-section {
    background: #f8f9fa;
}

.application-stats-kpis {
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.application-stats-kpis > div {
    padding: 16px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.application-stats-kpis strong {
    font-size: 26px;
}

.application-stats-kpis span {
    color: #68747f;
    font-size: 11px;
}

.application-stats-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 18px;
    align-items: start;
}

.application-stats-grid main,
.application-stats-grid aside {
    display: grid;
    gap: 16px;
}

.stats-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.stats-card h2 {
    margin: 5px 0 10px;
}

.monthly-bars {
    height: 260px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 8px;
    align-items: end;
}

.monthly-bars > div {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 5px;
    min-width: 0;
}

.monthly-bar-value {
    text-align: center;
    font-size: 11px;
    font-weight: 900;
}

.monthly-bar-track {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    background: #eef1f3;
}

.monthly-bar-track span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 4px;
    border-radius: 7px 7px 0 0;
    background: #111;
}

.monthly-bars small {
    overflow: hidden;
    color: #6f7a84;
    font-size: 9px;
    text-align: center;
    white-space: nowrap;
}

.pipeline-stat-list {
    display: grid;
    gap: 12px;
}

.pipeline-stat-head {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.pipeline-stat-head span {
    color: #68747f;
}

.pipeline-stat-track {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8ebee;
}

.pipeline-stat-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #111;
}

.stats-recent-list {
    display: grid;
}

.stats-recent-list > a {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
}

.stats-recent-list > a:last-child {
    border-bottom: 0;
}

.stats-recent-list > a > div:first-child,
.stats-recent-list > a > div:last-child {
    display: grid;
    gap: 4px;
}

.stats-recent-list > a > div:last-child {
    text-align: right;
}

.stats-recent-list span,
.stats-recent-list small,
.stats-recent-list time {
    color: #6b7781;
    font-size: 11px;
}

.rate-list {
    display: grid;
}

.rate-list > div,
.company-stat-list > div {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--line);
}

.rate-list > div:last-child,
.company-stat-list > div:last-child {
    border-bottom: 0;
}

.rate-list span,
.company-stat-list span {
    color: #65717c;
}

.avg-response-card {
    margin-top: 14px;
    padding: 14px;
    display: grid;
    gap: 4px;
    border-radius: 10px;
    background: #f7f8fa;
}

.avg-response-card span {
    color: #68747f;
    font-size: 11px;
}

.avg-response-card strong {
    font-size: 21px;
}

.stats-card > .outline-button {
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .application-stats-kpis {
        grid-template-columns: repeat(3, 1fr);
    }

    .application-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 750px) {
    .application-stats-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .application-stats-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .monthly-bars {
        gap: 4px;
    }

    .monthly-bars small {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }

    .stats-recent-list > a {
        flex-direction: column;
    }

    .stats-recent-list > a > div:last-child {
        text-align: left;
    }
}
