/* Override MUI Container for compare pages only */
.compare-page-wrapper .MuiContainer-root.MuiContainer-maxWidthLg {
    max-width: 2400px !important;
    padding-top: 0 !important;
}

.compare-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.compare-heading {
    text-align: center;
}

.compare-heading h1 {
    font-weight: 400;
    margin-bottom: 8px;
}

.compare-heading p {
    color: rgba(124, 143, 172, 1);
}

.compare-card {
    width: 100%;
    box-shadow: 0 12px 24px -4px rgba(145, 158, 171, 0.12);
    border: 1px solid rgba(145, 158, 171, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.compare-tabs {
    border-bottom: 1px solid rgba(145, 158, 171, 0.2);
}

.compare-content {
    padding: 24px;
}

.compare-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px;
    border: 1px dashed rgba(124, 143, 172, 1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 180px;
    text-align: center;
}

.compare-dropzone:hover {
    border-color: #5D87FF;
    background-color: rgba(93, 135, 255, 0.04);
}

.compare-dropzone.drag-over {
    border-color: #5D87FF;
    background-color: rgba(93, 135, 255, 0.08);
}

.compare-dropzone.has-error {
    border-color: #FA896B;
}

.compare-dropzone-icon {
    color: rgba(124, 143, 172, 1);
}

.compare-dropzone-label {
    font-weight: 500;
    color: rgba(42, 53, 71, 1);
}

.compare-dropzone-file {
    color: #5D87FF;
    font-weight: 500;
}

.compare-dropzone-hint {
    color: rgba(124, 143, 172, 1);
    font-size: 12px;
}

.compare-dropzone-error {
    color: #FA896B;
    font-size: 12px;
}

.compare-arrow {
    color: rgba(124, 143, 172, 1);
}

.compare-submit {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.compare-submit button {
    min-width: 200px;
    font-weight: 600;
}

.compare-footer {
    text-align: center;
    margin-top: 24px;
    color: rgba(124, 143, 172, 1);
    font-size: 14px;
}

.compare-usage {
    text-align: center;
    margin-bottom: 16px;
    color: rgba(124, 143, 172, 1);
    font-size: 14px;
}

/* Text comparison tab */
.compare-text-area {
    width: 100%;
}

.compare-text-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(42, 53, 71, 1);
}

/* Compare Result Page - matching DocumentAnalysisPage pattern */
.compare-result-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.compare-result-wrapper .MuiContainer-root {
    max-width: 2400px !important;
    padding-top: 0 !important;
}

.compare-result-content {
    display: flex;
    flex: 1;
    width: 100%;
    gap: 16px;
    max-width: 2400px;
    margin: 0 auto;
    min-height: 0;
    overflow: hidden;
}

/* Public comparison route (without /user/) needs padding */
.compare-result-wrapper.public-route {
    padding: 16px;
    box-sizing: border-box;
}

/* Mobile responsiveness for compare forms */
@media (max-width: 600px) {
    .compare-dropzone {
        padding: 24px 16px;
        min-height: 150px;
    }

    .compare-content {
        padding: 16px;
    }

    .compare-submit button {
        min-width: 160px;
        width: 100%;
    }
}

.full-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.entry-title {
    font-size: 56px;
    margin-bottom: 70px;
    line-height: 4rem; 
    margin-left: 24px;
}

.beta {
    background: #4570EA;
    color: white;
    font-size: 0.3em;
    position: absolute;
    border-radius: 50px;
    padding: 0 10px;
    margin-left: 5px;
    margin-top: -10px;
    white-space: nowrap;
}

.content {
    background-color: #ecf2ff;
    text-align: left;
    line-height: 1.5;
    letter-spacing: normal;
    font-size: 21px;
    padding-top: 50px;
}

.intro {
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #333;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    background: #ecf2ff;
    position: relative;
    z-index: 2;
    text-align: left;
}


