/* Analyzing Page Styles */
.analyzing-container {
    width: 100%;
}

.analyzing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.analyzing-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    text-align: left;
}

#analyzing-percent {
    font-size: 1.1rem;
    font-weight: 700;
    color: #888;
}

.analyzing-bar-container {
    width: 100%;
    height: 12px;
    background-color: #E0E0E0;
    /* Light gray track */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.analyzing-bar-fill {
    height: 100%;
    width: 0%;
    background-color: #7B1FA2;
    /* Purple logic */
    border-radius: 10px;
    /* transition: width 0.05s linear; JS handles increments, transition optional */
}

.analyzing-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

/* Ensure reused testimonial looks good */
.analyzing-container .testimonial-card {
    background-color: #F8F4FF;
    /* Very light purple */
    border: 1px solid #D1C4E9;
    padding: 20px;
}