.diagnosis-report {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 2px;
}

#canvas-container {
    width: 530px;
    height: 350px;
    border-radius: 75px;
    border: 2px solid rgba(221, 221, 221, 0.23);
    overflow: hidden;
    margin-left: -25px;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 0;
    box-shadow: 0 0 30px rgba(232, 232, 232, 0.1);
    backdrop-filter: blur(2px);
    background-image: linear-gradient(to bottom right, rgba(25, 25, 25, 0.47) 20%, rgba(34, 34, 34, 0.47) 60%, rgba(25, 25, 25, 0.49) 100%);

    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 2;
    grid-row-start: 2;
}

.status-indicator {
    margin-top: 80px;
    margin-bottom: 0;
    margin-left: -30px;
    width: 95px;
    height: 23px;
    padding: 3px 2px;
    border-radius: 33px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #00e1ff;
    background-image: linear-gradient(to right, #1e5459 0% , #0066ff 100%);
    border: 3px solid rgb(0, 128, 255);
}

.status-indicator.yellow {
    width: 145px;
    height: 23px;

    color: #ECFF1C;
    background-image: linear-gradient(to right, #947525 0% , #573600 100%);
    border: 3px solid #937424;
}

.status-indicator.green {
    width: 115px;
    height: 23px;

    color: #55E21C;
    background-image: linear-gradient(to right, #629425 0% , #395700 100%);
    border: 3px solid #5E8F21;
}

.status-circle {
    width: 5px;
    height: 5px;
    padding: 2px 2px;
    margin-right: 4px;
    border-radius: 50%;
    background-color: #00d9ff;
}

.status-circle.yellow {
    background-color: #D4DB1C;
}

.status-circle.green {
    background-color: #55E21C;
}

.status-text {
    margin: 0 0 0 0;
    font-size: 18px;
    font-weight: 600;
    backdrop-filter: blur(2px);
}

.report-text {
    grid-row: span 3 / span 3;
    grid-column-start: 4;
    grid-row-start: 2;
}

.results-text {
    margin-left: -145px;
    margin-top: -52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.bpm-main {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: -1px;
    word-spacing: -4px;

    background: linear-gradient(163deg, #FF0000 0%, #B37171 79%, #999999 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bpm-heart {
    width: 37px;
    height: 37px;
    margin-right: -5px;
}

.bpm-number {
    font-weight: 600;
}

.ai-overview {
    margin-left: -25px;
}

.ai-overview-main {
    margin-top: -50px;
    font-weight: 600;
    font-size: 30px;
    background: linear-gradient(160deg, #0095FF 0%, #4B4BAC 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ai-sparkle {
    width: 26px;
    height: 26px;
    margin-right: 2px;
    margin-bottom: -1px;
}

.ai-overview-text {
    width: 300px;
    font-size: 32px;
    font-weight: 700;
    margin-top: -30px;
    margin-left: 10px;
    font-family: "Noto Sans KR", sans-serif;

    background: linear-gradient(160deg, #B9B9B9 0%, #49497B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 38px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}