.top-bar-buttons {
                display: flex;
                gap: 10px;
                height: 50px;
                width: 1280px;
                background-color: transparent;
                align-items: center;
                justify-content: flex-end;
                padding: 0 15px;
                position: relative;
                z-index: 1000;
            }
            
            .top-button-track {
                margin: 0;
                padding: 8px 16px;
                background-color: #183650;
                border: 1px solid #34CCFF;
                border-radius: 50px;
                cursor: pointer;
                transition: all 0.3s ease;
            }
            
            .top-button-track a {
                color: white;
                text-decoration: none;
                text-transform: uppercase;
                font-size: 14px;
                font-weight: 500;
            }
            
            .top-button-track:hover {
                background-color: #34CCFF;
                transform: translateY(-2px);
            }
            
            .top-button-track:hover a {
                color: #183650;
            }