/* Main Content Grid Layout */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.left-column,
.right-column {
    min-height: 400px;
}

.result-card {
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.result-card .result-content {
    flex: 1;
}

/* Result Placeholder */
.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    opacity: 0.5;
}

.placeholder-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.result-placeholder p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Update container width */
.container {
    max-width: 1400px !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .result-card {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .result-card {
        min-height: 300px;
    }
    
    .result-placeholder {
        min-height: 250px;
    }
}
/* Compact Header Styles */
.header {
    text-align: center;
    margin-bottom: 24px !important;
    animation: fadeInDown 0.6s ease-out;
}

.icon {
    font-size: 36px !important;
    margin-bottom: 8px !important;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

h1 {
    font-size: 28px !important;
    font-weight: 700;
    margin-bottom: 4px !important;
    background: linear-gradient(135deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 14px !important;
    font-weight: 400;
}

.container {
    padding: 40px 24px !important;
}

/* Compact Header Styles */
.header {
    text-align: center;
    margin-bottom: 24px !important;
}

.icon {
    font-size: 36px !important;
    margin-bottom: 8px !important;
}

h1 {
    font-size: 28px !important;
    margin-bottom: 4px !important;
}

.subtitle {
    font-size: 14px !important;
}

.container {
    padding: 40px 24px !important;
}

