body { margin: 0; font-family: “Segoe UI”, sans-serif; background: #f5f7fa; display: flex; } /* === SIDEBAR === */ .sidebar { width: 280px; background: #243b55; color: #fff; position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3); padding: 15px; border-right: 2px solid #1b2838; } .hide-block { background: #1b2838; color: #fff; border: none; padding: 8px 12px; border-radius: 6px; cursor: pointer; margin-bottom: 15px; } .section { margin-bottom: 20px; background: #314a67; border-radius: 8px; padding: 10px; } .section h3 { margin: 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 6px; } .section.active { background: #2d5e85; } .top-games .game { background: #3a618b; padding: 10px; border-radius: 8px; margin-top: 8px; } .game-header { display: flex; flex-direction: column; font-size: 13px; color: #cce5ff; } .status { color: #9fda9f; font-size: 12px; } .teams { margin-top: 8px; } .team { display: flex; justify-content: space-between; margin-bottom: 4px; } .score { font-weight: bold; color: #fff; } .odds { display: flex; justify-content: space-between; margin-top: 8px; } .odds button { flex: 1; margin: 0 3px; background: #1b2838; border: none; color: #fff; border-radius: 4px; padding: 5px; cursor: pointer; font-size: 13px; } .odds button:hover { background: #2a3d55; } ul { list-style: none; padding-left: 10px; } ul li { padding: 6px 0; cursor: pointer; color: #d1e3ff; } ul li:hover { text-decoration: underline; } /* === CONTENT === */ .content { margin-left: 300px; padding: 30px; flex: 1; }