body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fdf7e5;
}

.container {
    display: flex;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.left-panel, .right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.center-panel {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.status-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border-radius: 0;
    box-shadow: none;
    width: fit-content;
    height: fit-content;
    padding: 0;
    margin-bottom: 0;
}

#status-image {
    width: 110%;
    height: 110%;
    max-width: 660px;
    max-height: 860px;
    object-fit: fill;
    background: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0 auto;
}

#status-message {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.timer-container, .dbfs-container {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.timer-container {
}

#timer {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 10px;
}

#dbfs-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 10px;
}

#meter-canvas {
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#listen-button {
    padding: 12px 24px;
    font-size: 1.2rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#listen-button:hover {
    background-color: #45a049;
}

#listen-button.stop {
    background-color: #f44336;
}

#listen-button.stop:hover {
    background-color: #d32f2f;
}

#error-message {
    color: #f44336;
    margin-top: 15px;
    text-align: center;
    min-height: 20px;
}

h3 {
    margin: 0;
    color: #333;
}

/* 分析弹窗样式 */
#analysis-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#analysis-content {
    background: #fff;
    padding: 36px 48px;
    border-radius: 16px;
    box-shadow: 0 6px 36px rgba(0,0,0,0.18);
    text-align: center;
    min-width: 320px;
}
#analysis-content h2 {
    margin-bottom: 18px;
}
#analysis-content .stat {
    font-size: 1.2rem;
    margin: 12px 0;
}
#analysis-close {
    margin-top: 24px;
    padding: 8px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    background: #4CAF50;
    color: #fff;
    cursor: pointer;
}
#analysis-close:hover {
    background: #388e3c;
}

#monitor-label {
    font-size: 1.1rem; /* Example font size */
    color: #787777; /* Example color */
    padding-top: 5px; /* Add some space above */
}