 .cargo-table select,
 .cargo-table input {
     height: 38px;
     line-height: 38px;
     padding: 0 10px;
     margin: 0;
     box-sizing: border-box;
     vertical-align: middle;
     font-size: 14px;
 }

 .cargo-table td {
     vertical-align: middle;
     padding: 8px 5px;
 }

 .cargo-table th {
     text-align: left;
     padding: 10px 5px;
     border-bottom: 1px solid #1a2a3a;
 }

 .cargo-table th:nth-child(2),
 .cargo-table td:nth-child(2) {
     width: 200px;
 }

 .cargo-table th:nth-child(4),
 .cargo-table td:nth-child(4) {
     width: 200px;
 }

 html,
 body {
     height: auto;
     overflow-y: auto;
     overflow-x: hidden;
 }

 .route-container {
     max-width: 1200px;
     margin: 20px auto 150px auto;
     padding: 20px;
 }

 .summary-bar {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: #050f19;
     border-top: 2px solid var(--ui-blue);
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 20px;
     z-index: 1000;
     box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);
     flex-wrap: wrap;
 }

 .save-controls,
 .profit-controls {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .divider {
     border-left: 1px solid #1a2a3a;
     height: 30px;
     margin: 0 5px;
 }

 .total-display {
     font-weight: bold;
     font-size: 1.1em;
     margin-right: 15px;
     letter-spacing: 1px;
 }

 .btn-delete-small {
     background: #441111;
     color: #ff4444;
     border: 1px solid #ff4444;
     cursor: pointer;
     padding: 8px;
     transition: 0.2s;
 }

 .btn-delete-small:hover {
     background: #ff4444;
     color: white;
 }

 .route-container {
     margin-top: 20px;
 }

 .stop-header {
     position: sticky;
     top: 0;
     background: #0a1520;
     z-index: 10;
     padding: 10px;
     border-bottom: 1px solid var(--ui-blue);
 }