:root {
    --bg-gray: #f0f2f5;
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg-gray); 
    margin: 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Force centering like the reference image */
.container { 
    width: 1100px !important; 
    max-width: 95vw;
    margin: 0 auto !important;
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.feed-column { flex: 1; min-width: 0; }
.sidebar-column { width: 300px; }

/* Ensure the card always uses the full width of the centered column */
.deal-card { width: 100%; box-sizing: border-box; }
