.summary_container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /*border: 1px solid #d0d7de;*/
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #d0d7de;
}

.left-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4169E1;
}

.icon {
    font-size: 1.2em;
}

.title {
    font-size: 1em;
    color: #4169E1;
}

.right-header {
    display: flex;
    align-items: center;
}

.badge {
    background-color: #4169E1;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.9em;
}

.summaryBox {
    font-size: 1em;
    line-height: 1.6;
    padding: 20px;
    color: #1a1a1a;
    background-color: white;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    position: relative;
}

.cursor {
    display: inline-block;
    width: 6px;
    height: 6px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-left: 2px;
    border-radius: 50%;
    opacity: 0.8;
    color: #4169E1;
}

@keyframes blink {
    from, to {
        background-color: transparent;
    }
    50% {
        background-color: black;
    }
}
