body { font-family: Arial, sans-serif; margin: 0; /* Removed margin to ensure full height usage */ display: flex; height: 100vh; /* Full viewport height */ } .main-container { width: 60%; padding: 20px; /* Added padding to the main container */ } .preview-box { margin: 20px 0; border: 1px solid #ccc; padding: 20px; background-color: #f9f9f9; display: flex; justify-content: space-between; align-items: center; } .font-label { font-size: 14px; margin-bottom: 10px; display: inline-block; } .preview-text { font-size: 36px; margin-bottom: 10px; } .remove-btn, .copy-btn { font-size: 20px; color: red; background: none; border: none; cursor: pointer; margin-left: 20px; } .star { font-size: 24px; cursor: pointer; } .star:hover { color: gold; } .favorites-container { width: 40%; padding: 20px; border-left: 2px solid #ccc; height: 100vh; /* Full height for the favorites container */ display: flex; flex-direction: column; } .favorites-list { flex-grow: 1; /* This allows the favorites list to expand */ overflow-y: auto; /* Enable scrolling if favorites overflow the container */ border: 1px solid #ccc; padding: 10px; } .control-panel { margin-bottom: 20px; } .export-btn { margin: 10px 0; padding: 10px; background-color: green; color: white; border: none; cursor: pointer; }